检测导航到<名称 = "latest-topics" ></a>



我需要检测一些URL导航到锚点的事件:

<a name="latest-topics"></a>
http://someserver.com/index.html#latest-topics

然后我想使用onfocusonclick等类型的事件。

<a onclick="doSomething()" onfocus="doSomething()" name="latest-topics"></a>

在导航到该锚点的精确事件中,有哪些选项可以检测导航到该锚?

或者我需要一个带有setInterval的计时器来每隔几毫秒持续轮询对location.hash的更改?

您可以在加载时执行此操作:

if(window.location.hash) {
 // do your check here.
}

相关内容

  • 没有找到相关文章

最新更新