如何在jquery mobile中返回而不触发动画?

发布于 2024-12-11 05:28:05 字数 301 浏览 0 评论 0原文

在 jquery mobile 中返回将触发带有 location.hash$.mobile.changePage(),如 jquery mobile 文档中所述。

我不希望能够在不发生任何事情的情况下执行 history.go(-N),除了浏览器的历史记录被最后 N 个元素缩短之外。

所以我希望避免 $.mobile.changePage() 的动画会隐藏和显示不同的页面。

这可能吗?我怎样才能做到这一点?

Going back in jquery mobile will trigger a $.mobile.changePage() with the location.hash as explained in the jquery mobile docs.

I wan't to be able to do a history.go(-N) without anything happening except the history of the browser being shortened by the last N elements.

So I wish to avoid the animation of $.mobile.changePage() that will hide and show a different page.

Is it possible ?, and how can I achieve this ?

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

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

发布评论

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

评论(2

三生一梦 2024-12-18 05:28:05

这就是我所做的,但我对此一点也不高兴。但它确实有效。

$.mobile.hashListeningEnabled = false;
history.go(-history_steps);
...

setTimeout(function() {
   $.mobile.hashListeningEnabled = true;
}, 300);

这里的超时是为了在触发真正的hashchange事件之后尝试重新启用正常行为。

如果有人能有更好的解决方案,我会非常高兴。

This what I did, but I'm not happy at all with it. But it does the trick.

$.mobile.hashListeningEnabled = false;
history.go(-history_steps);
...

setTimeout(function() {
   $.mobile.hashListeningEnabled = true;
}, 300);

The timeout is here to try to re-enable the normal behavior after the real hashchange event is triggered.

I would be really happy if someone could have a better solution.

顾北清歌寒 2024-12-18 05:28:05

jQueryMobile 中有“rel=external”函数,它不会触发动画。

There is "rel=external" function in jQueryMobile and it won't trigger the animation.

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