为什么我无法从second.html导航到另一个内页#page3?
我可以从index.html导航到second.html。我的代码如下所示:
index.html页面
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="widdiv=device-widdiv, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
<title>
</title>
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.css" />
<script src="http://www.dragan-gaic.info/js/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>
<script>
$(document).on('pagebeforeshow', "#index",function () {
$(document).on('click', "#changePage",function () {
$.mobile.changePage('second.html', { dataUrl : "second.html?paremeter=123", data : { 'paremeter' : '123' }, reloadPage : false, changeHash : true });
});
});
</script>
</head>
<body>
<!-- Home -->
<div data-role="page" id="index">
<div data-role="header">
<h3>
First Page
</h3>
</div>
<div data-role="content">
<a data-role="button" id="changePage">Test</a>
</div> <!--content-->
</div><!--page-->
</body>
</html>
second.html页面
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<!-- Home -->
<div data-role="page" id="second">
<script type="text/javascript">
alert("Inside the Second Page");
$(document).on('pagebeforeshow', "#second",function () {
//$(document).ready(function(e) {
var parameters = $(this).data("url").split("?")[1];
parameter = parameters.replace("parameter=","");
alert(parameter);
});
function move(){
alert("moving...");
$.mobile.changePage('#third');
alert("moved !!!");
}
</script>
<div data-role="header">
<h3>
Second Page
</h3>
</div>
<div data-role="content">
<a href="#third" onClick="move()" data-role="button">Go to Property Page</a>
</div> <!--content-->
</div><!-- second page-->
<div data-role="page" id="third">
<script type="text/javascript">
alert("Inside Third Page...");
</script>
</div>!-- third page-->
</body>
</html>
在second.html页面中,还显示了第二条警报消息,但页面导航从未发生过。谁能让我知道我在这里错过了什么,或者我在这里做错了什么?。
答案 0 :(得分:3)
不幸的是,这不起作用。这只是使用jQuery Mobile的多个HTML模板解决方案的缺点。
基本上,如果您决定使用多个HTML页面,则只有第一页HTML可以有超过1页,因为整个页面将被加载到DOM中。
如果ajax用于加载页面(默认页面处理),当第二个html加载到DOM时,只会加载第一个页面,包括页面HEAD在内的每个其他页面都将被丢弃。
你可以做两件事来解决这个问题:
让您的第三页位于另一个html中,例如 third.html 。
使用ajax禁用页面加载。这将完全加载 second.html ,以便您可以切换到内页。不幸的是,您将丢失页面转换。
最后,如果您想了解更多内容,请查看我的其他答案: Why I have to put all the script to index.html in jquery mobile