重定向到主页

是否可以从子页面“重定向”用户,即。 index.htm #sub-page to index.htm #home with mobileinit function?
$(document).bind("mobileinit", function(){
    $.mobile.changePage("/index.htm#home");
});
    
已邀请:
那么为何不
$(document).bind("mobileinit", function(){
    document.location.href="whereever";
});
要不就
<script>
document.location.href="whereever";
</script>
甚至与metatag?     
$.mobile.changePage('#page_two');
这个对我有用。     
是。如果你使用重定向,非ajax网页必须重新加载超过100KB的JQuery JS .... 我仍然不想,但在某些情况下,它必须通过页面重新加载(仔细处理PHP会话)。     

要回复问题请先登录注册