我只是想知道在单击带有内联代码的链接元素(A)时跳过浏览器更改位置的行为的首选方法是什么。
<a href="javascript:void(0)">void(0)</a> // I have always used this one
或者
<a href="javascript:;">:;</a> // This one is simple and now a days my favourite
或者
<a href="#">#</a> // Scroll to the top
或者你是怎么做的,为什么?什么是最佳实践?