chrome

chrome下

<a href="javascript:void(0)">click</a>

$("a").click(function(){ location.hash = "xxx"; }

 

第一次点会跳锚点,第二次不会跳鸟。

解决:$("a").click(function(){ location.hash = "xxx";window.location = window.location; }

你可能感兴趣的:(chrome)