重定向到主页

发布于 2024-10-19 21:54:52 字数 197 浏览 1 评论 0原文

是否可以从子页面“重定向”用户,即。使用 mobileinit 函数将 index.htm#sub-page 转至 index.htm#home?

$(document).bind("mobileinit", function(){
    $.mobile.changePage("/index.htm#home");
});

Is it possible to "redirect" users from a subpage ie. index.htm#sub-page to index.htm#home with the mobileinit function?

$(document).bind("mobileinit", function(){
    $.mobile.changePage("/index.htm#home");
});

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

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

发布评论

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

评论(3

旧人九事 2024-10-26 21:54:52

为什么不

$(document).bind("mobileinit", function(){
    document.location.href="whereever";
});

或者

<script>
document.location.href="whereever";
</script>

仅仅使用元标签?

And why not

$(document).bind("mobileinit", function(){
    document.location.href="whereever";
});

or just

<script>
document.location.href="whereever";
</script>

or even with a metatag?

烟沫凡尘 2024-10-26 21:54:52
$.mobile.changePage('#page_two');

这对我有用。

$.mobile.changePage('#page_two');

This one worked for me.

花桑 2024-10-26 21:54:52

是的。如果使用重定向,非ajax网页必须重新加载超过100KB的JQuery JS....
我仍然不想,但在某些情况下必须通过页面重新加载来完成(以仔细处理 PHP 会话)。

Yes. If you use redirect, the non-ajax web page must reload more than 100KB of JQuery JS....
I still don't want to, but in some cases it must be done by page reload (to handle the PHP Session carefully).

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