スワイプイベントの後、JQuery Mobile の関数 changePage() でページを変更しようとしています。ロードされる新しいページは現在のページと同じですが、パラメーターが異なるだけです (私の場合は、年と月をパラメーターとして持つカレンダーです)。
私はそれを簡単な例に分解しました:
test.php:
<!DOCTYPE html>
<html>
<head>
<title>Test</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="apple-mobile-web-app-capable" content="yes">
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.3.2/jquery.mobile-1.3.2.min.css" />
<script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
<script src="http://code.jquery.com/mobile/1.3.2/jquery.mobile-1.3.2.min.js"></script>
<script type="text/javascript">
$(document).on("pageinit","#main",onPageInit);
function onPageInit(event)
{
$(document).on("swipeleft","#main",onSwipeLeft);
<?php
if ($_GET['id'] > 0)
{
?>
$(document).on("swiperight","#main",onSwipeRight);
<?php
}
?>
}
function onSwipeLeft(event)
{
//alert ("left");
//$.mobile.changePage("test.php?id=<?php echo $_GET['id'] + 1 ?>", { transition: "slide", allowSamePageTransition: true, reloadPage: true} );
$.mobile.changePage("test.php?id=<?php echo $_GET['id'] + 1 ?>", { transition: "none", allowSamePageTransition: true });
}
function onSwipeRight(event)
{
//alert ("right");
//$.mobile.changePage("test.php?id=<?php echo $_GET['id'] - 1 ?>", { transition: "slide", allowSamePageTransition: true, reloadPage: true} );
$.mobile.changePage("test.php?id=<?php echo $_GET['id'] - 1 ?>", { transition: "none", allowSamePageTransition: true });
}
</script>
</head>
<body>
<div data-role="page" id ="main" data-theme="a">
<div data-role="content" id ="content" data-theme="a">
<?php echo $_GET['id'] ?>
</div>
</div>
</body>
</html>
ただし、これは最初のスワイプでのみ機能します。2 回目のスワイプの後、スクリプト エラーが発生します。
TypeError: b.data("mobile-page") は定義されていません Quelldatei: http://code.jquery.com/mobile/1.3.2/jquery.mobile-1.3.2.min.js Zeile: 3
さまざまなトランジションで試しましたが、すべて同じ結果になりました。
ここで何が問題なのですか?