ここの初心者、投稿の正しい詳細をすべて理解していない場合は申し訳ありません... jquery mobileの左右のスワイプを理解するために、いくつかのページにアクセスしました。スクリプトのためにこのページにアクセスしました-http: //designicu.com/jquery-mobile-swipe/なんらかの理由で、まったく機能しません。私は小さくて愚かな何かを見逃していると確信しています...誰かが私の問題を見ることができますか?ありがとう
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1"/>
<link rel="stylesheet" href="_/css/jquery.mobile.css" />
<script src="_/javascript/jquery.js"></script>
<script src="_/javascript/jquery.mobile.js"></script>
<script>
$('div.ui-page').live("swipeleft", function(){
var nextpage = $(this).next('div[data-role="page"]');
if (nextpage.length > 0) {
$.mobile.changePage(nextpage, "slide", false, true);
}
});
$('div.ui-page').live("swiperight", function(){
var prevpage = $(this).prev('div[data-role="page"]');
if (prevpage.length > 0) {
$.mobile.changePage(prevpage, {transition: "slide",
reverse: true}, true, true);
}
});
</script>
</head>
<body>
<div data-role="page" id="editor">
<div>bucker</div>
</div>
<div data-role="page" id="innovation1">
<div>bunk</div>
</div>
</body>
</html>