我正在使用jQuery mobile multipage template,我想以编程方式打开第二页。这是我的示例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中收到以下错误:
TypeError:u未定义
我感谢任何评论
答案 0 :(得分:2)
将您的jquery代码包含在document.ready()
处理程序中:
$(document).ready(function() {
jQuery.mobile.changePage($("#page2"));
});