PushState 在 IE 7 中导致回发>

发布于 2024-12-09 18:07:47 字数 267 浏览 1 评论 0原文

目前我正在做一个服务器端重定向,它会像这样附加位置哈希...

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 技术交流群。

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

发布评论

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

评论(1

若能看破又如何 2024-12-16 18:07:47

好吧,在 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.

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