Я новичок в phonegap. Я создаю приложение в eclipse, используя phonegap для android. Я добавил phone gap.jar и плагин в папку xml. Я также добавил библиотеку jquery и phonegap1.1.0 js.я пытаюсь реализовать функцию перелистывания для перехода от одной страницы к другой, но она не работает. Кто-нибудь может сказать, как решить проблему?
В своей деятельности я звоню по адресу inst.html Это мой index.html
<html>
<head>
<title>sample check</title>
<link rel="stylesheet" href="www/jquery.mobile/jquery.mobile-1.0rc2.min.css" type="text/css" charset="utf-8" />
<script type="text/javascript" src="js/fnswipe.js"></script>
<script type="text/javascript" src="www/jquery.mobile/jquery-1.6.4.min"></script>
<script type="text/javascript" src="www/jquery.mobile/jquery.mobile-1.0rc2.min.js"></script>
<script type="text/javascript" charset="utf-8" src="phonegap-1.1.0.js"></script>
</head>
<body>
<div data-role="page" id="home">
<div data-role="content">
<p>
<ul data-role="listview" data-inset="true" data-theme="c">
<li id="listitem">Swipe Right to smple check page</li>
</ul>
</p>
</div>
</div>
</body>
</html>
Это мой js-файл, включенный
$("#listitem").swiperight(function() {
$.mobile.changePage("file:///android_asset/www/samplecheck.html");
});
Спасибо за помощь