重定向到主页
是否可以从子页面“重定向”用户,即。使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
为什么不
或者
仅仅使用元标签?
And why not
or just
or even with a metatag?
这对我有用。
This one worked for me.
是的。如果使用重定向,非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).