这是示例代码(test.html),
<!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>
当我尝试使用 Firefox 和 Chrome 访问 ./test.html#page2 时,预计会更改为 page1。但它并不总是成功地更改为 page1。有时,它在 page2 中仍然保持不变。有谁知道为什么?
谢谢!