重定向到主页

时间:2011-03-03 17:52:55

标签: jquery-mobile

是否可以从子页面“重定向”用户,即。 index.htm #sub-page to index.htm #home with mobileinit function?

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

3 个答案:

答案 0 :(得分:3)

为什么不呢

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

或只是

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

甚至是metatag?

答案 1 :(得分:3)

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

这个对我有用。

答案 2 :(得分:1)

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