onHashChange 在 Safari 中工作吗?
onHashChange
或 hashChange
在 Safari 中工作吗?我在 Windows 7 上使用 Safari 4.0.4 进行了测试,但它对我不起作用。
如果不起作用,是否有任何解决方案可以跟踪 hash
是否已更改?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在我们的应用程序中,我们轮询以检查更改:
$b 是我们用于命名空间的全局对象,而
hashCheckDelay
根据经验设置为 120 毫秒。虽然这样做看起来有点悲伤过程中,我们测试的任何浏览器都没有任何性能问题。
In our app we poll to check for changes:
$b is the global object we use for our namespace and
hashCheckDelay
was empirically set at 120ms.While it looks a bit sad to do this kind of process, there isn't any performance issue on any browser we tested.
在 Safari 4.0.4 中它还不能工作,但在最新的版本中工作得很好。对于那些不支持 onHashChange 的浏览器,我没有找到任何可接受的解决方案来跟踪哈希值是否已更改。
In
Safari 4.0.4
it's not working yet but in the latest one works fine. And I didn't find any acceptable solutions to track if the hash has changed for those browsers which don't supportonHashChange
.