我有一个带有两页的简单 index.html ......
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<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.10.0.min.js"></script>
<script src="http://code.jquery.com/mobile/1.3.1/jquery.mobile-1.3.1.min.js"></script>
</head>
<body>
<div data-role="page" id="page1">
<div></div>
</div>
<div data-role="page" id="page2">
<div></div>
</div>
</body>
</html>
Page1 有一个按钮。当用户点击它时,我调用 js 函数。
function openPage2() {
}
此函数应加载第 2 页。怎么做 ?
我试过了
$.mobile.changePage("page2.html");
但它不工作......我做错了什么?