当谈到使用 jQuery/jQuery 移动时,Stackoverflow 中有很多主题。但是,它们似乎都没有以我想要的方式工作。以下是我的 phonegap 应用程序的索引页面的结构。正如本主题所推荐的,我尝试了 jgestures 插件。
<html>
<head>
<title>App</title>
<script type="text/javascript" src="lib/cordova-2.2.0.js"></script>
<script type="text/javascript" src="lib/jquery-1.8.2.min.js"></script>
<script type="text/javascript" src="lib/jgestures.js"></script>
</head>
<body>
<div id="home">
<div id="headersec">
<!-- some elements like images here-->
</div>
<div id="screen1">
<!-- three 80x80 images go here -->
</div>
<div id="screen2">
<!-- three other 80x80 images go here-->
</div>
</div>
</body>
</html>
我想在我的 deviceready 活动中做的就是这个
document.addEventListener("deviceready",onDeviceReady,false);
function onDeviceReady() {
$('#screen1').bind('swipeleft',showNext); //show next hides screen1, shows screen2
$('#screen2').bind('swiperight',showPrev);//show prev hides screen2, shows screen1
}
但这不适用于我尝试过的任何示例代码。谁能告诉我我做错了什么?