将$ .mobile.changePage放在正确的位置

时间:2013-03-15 14:04:05

标签: jquery-mobile

我试图了解$ .mobile.changePage是如何工作的。我将方法$ .mobile.changePage放在DOM中的最后一个元素之后的匿名函数中,它没有用,但是如果我将它放在document.ready中它可以正常工作。怎么会?任何建议非常感谢

<!DOCTYPE html> 
<html> 
<head> 
    <title>My Page</title> 
    <meta name="viewport" content="width=device-width, initial-scale=1"> 
    <link rel="stylesheet" href="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.css" />
    <script src="http://code.jquery.com/jquery-1.8.2.min.js"></script>
    <script src="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.js"></script>
</head> 
<body> 

    <!-- Start of first page -->
    <div data-role="page" id="foo">

        <div data-role="header">
            <h1>Foo</h1>
        </div><!-- /header -->

        <div data-role="content">   
            <p>I'm first in the source order so I'm shown as the page.</p>      
            <p>View internal page called <a href="#bar">bar</a></p> 
        </div><!-- /content -->

        <div data-role="footer">
            <h4>Page Footer</h4>
        </div><!-- /footer -->

    </div><!-- /page -->

    <!-- Start of second page -->
    <div data-role="page" id="bar">

        <div data-role="header">
            <h1>Bar</h1>
        </div><!-- /header -->

        <div data-role="content">   
            <p>I'm the second in the source order so I'm hidden when the page loads. I'm just shown if a link that references my id is beeing clicked.</p>      
            <p><a href="#foo">Back to foo</a></p>   
        </div><!-- /content -->

        <div data-role="footer">
            <h4>Page Footer</h4>
        </div><!-- /footer -->

    </div><!-- /page -->

    <script>
        (function(){ 

                $.mobile.changePage($("#bar"), { transition: "slideup"} );          

        })();// this doesn't work


        $(document).ready(function(){

                $.mobile.changePage($("#bar"), { transition: "slideup"} );

            })//this works

    </script>

1 个答案:

答案 0 :(得分:1)

document ready 无法正常使用 jQuery Mobile 。通常它会在页面加载到 DOM 之前触发。

如果您想了解更多相关内容,请查看此 ARTICLE ,为了透明,这是我的个人博客。或者找到 HERE

要使其正常工作,您需要使用正确的页面事件,如下所示:

$(document).on('pagebeforeshow', '#foo', function(){       
    $.mobile.changePage($("#bar"), { transition: "slideup"} );
});

同时这不是一个好的解决方案。首页加载时不应更改页面,主要是因为它会导致 jQuery Mobile 行为异常。以太网在成功加载第一页(页面 #foo )后执行此操作或更改页面顺序,并让页面 #bar 成为第一页。