PushState 在 IE 7 中导致回发>
目前我正在做一个服务器端重定向,它会像这样附加位置哈希...
SearchTerms[]=web&PageNo=1&PageSize=10&Sort=0&AllFacetGroups=null
当我调用 PushState 来更新位置哈希时,这会触发一个回发。
请注意,这不会发生在 FF 中,但在 IE(7 及更高版本)中,由于某些奇怪的原因,它会触发回发。
我怎样才能阻止回帖的发生?
Currently I'm doing a server side redirect which appends the location hash like so...
SearchTerms[]=web&PageNo=1&PageSize=10&Sort=0&AllFacetGroups=null
When I call pushState to update the location hash, this fires a post back.
Note this does not occur in FF but in IE (7 and above) for some strange reason it triggers a post back.
How can I stop the post back from happening?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好吧,在 IE 中解决这个问题的方法是使用 document.location.href 进行重定向,这会正确初始化位置哈希。使用服务器重定向无法初始化 document.location.hash。
Ok the hack to get round this in IE is to redirect using the document.location.href, this correctly initializes the location hash. Redirecting using the server fails to initialize the document.location.hash.