0
在這裏工作是示例代碼(test.html中),jQuery Mobile的 - changePage不pageinit
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.3.0/jquery.mobile-1.3.0.min.css"/>
<script src="http://code.jquery.com/jquery-1.8.3.js"></script>
<script src="http://code.jquery.com/mobile/1.3.0/jquery.mobile-1.3.0.min.js"></script>
</head>
<body>
<div data-role="page" id="page1">
<div data-role="content" id="content">Page 1</div>
</div>
<div data-role="page" id="page2">
<div data-role="content" id="content" >Page 2</div>
</div>
<script>
$('#page2').live('pageinit',function(evt) {
$.mobile.changePage($('#page1'),{allowSamePageTransition:true})
});
</script>
</body>
</html>
當我嘗試訪問./test.html#page2同時使用Firefox和Chrome,它是預計將更改爲page1。但它並未總是成功更改爲page1。有時候,它在頁面2中仍然保持不變。任何人知道爲什麼?
謝謝!