0

我正在使用 jQuery 移动多页模板,我想以编程方式打开第二页。这是我的示例 html:

<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.3.1/jquery.mobile-1.3.1.min.css" />
<script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
<script src="http://code.jquery.com/mobile/1.3.1/jquery.mobile-1.3.1.min.js"></script>
<meta charset="utf-8" />

</head>
<body>
    <!--===========This is the first page==========-->
    <div data-role="page" id="page1">
        <div data-role="header" data-theme="e">
            <h1>Dialog</h1>
        </div>
        <div data-role="content" data-theme="a">    
            <h1>This is page One</h1>
        </div>
        <div data-role="footer">
            <h4>Page Footer</h4>
        </div>
    </div>

    <!--========================================================-->

    <!--===========This is the second page==========-->
    <div data-role="page" id="page2">
        <div data-role="header" data-theme="e">
            <h1>Dialog</h1>
        </div>
        <div data-role="content" data-theme="a">    
            <h1>This is page Two</h1>
            <
        </div>
        <div data-role="footer">
            <h4>Page Footer</h4>
        </div>
    </div>
    <script>
        jQuery.mobile.changePage($("#page2"));
    </script>
</body>
</html>

一切似乎都很好,但是当我打开此页面时,我在 firebug 中收到以下错误:

类型错误:你未定义

我感谢任何评论

4

1 回答 1

2

在处理程序中包含您的 jquery 代码document.ready()

$(document).ready(function() {
   jQuery.mobile.changePage($("#page2"));
});
于 2013-04-27T17:20:59.943 回答