How do I make a link that goes nowhere?

前端 未结 7 757
梦毁少年i
梦毁少年i 2021-02-01 11:50

Is it possible to make a link that does nothing?

I want the item to be a link so I get the cursor to change on mouseover, but I don\'t want the link to actually go anywhe

7条回答
  •  闹比i
    闹比i (楼主)
    2021-02-01 12:52

    I was looking for something simpler, and I think I found it. Do you want your link not to go anywhere? Omit the href.

    Some text

    href="#" will scroll to the top of the page.

    href="javascript:;" seems dodgy.

    A JavaScript solution seems unnecessary for something as simple.

提交回复
热议问题