我需要检测某个 URL 导航到锚点的事件:
<a name="latest-topics"></a>
http://someserver.com/index.html#latest-topics
然后我想使用一些诸如 , 等的onfocus
事件onclick
。
<a onclick="doSomething()" onfocus="doSomething()" name="latest-topics"></a>
在导航到此类锚点的精确事件中,有哪些选项可以检测到导航到此类锚点?
还是我需要一个计时器setInterval
来location.hash
每隔几毫秒连续轮询一次更改?