0

我需要检测某个 URL 导航到锚点的事件:

<a name="latest-topics"></a>

http://someserver.com/index.html#latest-topics

然后我想使用一些诸如 , 等的onfocus事件onclick

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

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

还是我需要一个计时器setIntervallocation.hash每隔几毫秒连续轮询一次更改?

4

1 回答 1

2

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

if(window.location.hash) {
 // do your check here.
}
于 2012-09-13T11:24:36.283 回答