History.js onstatechange 在 IE7 中不起作用

发布于 2024-12-14 08:09:30 字数 318 浏览 0 评论 0原文

我集成了History.js,这段代码在URL更改上运行:

History.Adapter.bind(window,'statechange',function(){ 
    var State = History.getState();
    alert(State.url)
    showPage(State.url);
});

它在除IE7(IE8的兼容模式)之外的所有浏览器中运行良好。我认为 History.js 可以处理这个问题。

IE7真的不理解onStateChange事件吗?对于这种情况可以使用什么窗口事件?

I integrated History.js and this piece of code runs on URL change:

History.Adapter.bind(window,'statechange',function(){ 
    var State = History.getState();
    alert(State.url)
    showPage(State.url);
});

It works well in all browsers except IE7 (compatibility mode of IE8). I thought History.js would handle this.

Is it true that IE7 does not understand onStateChange event? What window event can be used for this case?

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

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

发布评论

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

评论(1

心欲静而疯不止 2024-12-21 08:09:30

从兼容性注释中可以看出:

MSIE 6 和 7 有时不应用哈希,即使被告知(需要第二次调用 apply 函数)

https://github.com/browserstate/History.js/

From the notes on compatibility it states:

MSIE 6 and 7 sometimes do not apply a hash even it was told to (requiring a second call to the apply function)

https://github.com/browserstate/History.js/

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