サンプルコード(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 に変更されるわけではありません。場合によっては、ページ 2 で変更されないことがあります。理由を知っている人はいますか?
ありがとう!