Jquery +最新的哈希更改侦听器?

发布于 2024-12-27 09:48:28 字数 519 浏览 1 评论 0原文

我正在使用 http://benalman.com/projects/jquery-hashchange-plugin/< /a> 来监听我的项目中的哈希更改,但他的插件已经过时,并且无法与 Firefox 9 和 IE9 等较新版本的浏览器一起使用。

在 Google 和此处搜索但找不到任何其他插件。

或者仅使用此代码来针对大多数浏览器就足够了吗?

$(window).bind('hashchange', function() {
    //code
});

编辑: 似乎这些浏览器上的 console.log() 存在问题,并且与 hashchange 无关。删除所有 console.log 输出后,它的工作方式与预期一致

I'm using http://benalman.com/projects/jquery-hashchange-plugin/ to listen for hash changes in my project, but his plugin is outdated and does not work with newer versions of browsers such as Firefox 9 and IE9.

Searched on Google and here but could not find any other plugin.

Or is it enough to just use this code to target most of the browsers?

$(window).bind('hashchange', function() {
    //code
});

EDIT:
Seems like there was a problem regarding console.log() on these browsers and had nothing to do with the hashchange. It works like expected after removing all console.log output

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

七分※倦醒 2025-01-03 09:48:28

您正在使用的插件仍然是最好的插件。有关 IE9 支持,请查看。还可以考虑为不支持哈希更改事件的浏览器提供一些替代方案(可能会有所帮助)。

Plugin you are using is still the best one available. For IE9 support check out this. Also consider some alternative for browsers that do not support hash change event (this may help).

夢归不見 2025-01-03 09:48:28

如果任何网址更改都有效,您可以查看 history.js 但您可能应该测试本机支持并在存在的地方使用本机事件,并使用该插件修复不支持本机事件的旧浏览器,这就是您引用的插件的设计目的。

If any url change would work, you might look at history.js But you should probably test for native support and use the native event where it exists, and use the plugin to fix older browsers that don't support the native event, which is what the plugin you referenced is designed to do.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文