History.js onstatechange 在 IE7 中不起作用
我集成了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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
从兼容性注释中可以看出:
From the notes on compatibility it states: