0
任何人都可以讓我在正確的方向,在網站上得到3頁,並結合從jQuery手機的刷卡元素,爲iPad使用我成功地從第一頁(介紹)滑動到下一個頁面(概述)和back..but不能進一步刷卡進入從(概述頁)swipeleft ......現場三(屬性)頁面繼承人我的代碼:html jquery移動頁面刷卡
第一頁...
<script type="text/javascript">
$(function() {
$("body").live('swiperight', function (event, ui) {
$.mobile.changePage("introduction.html", "slide");
});
$("body").live('swipeleft', function (event, ui) {
$.mobile.changePage("overview.html", "slide");
});
});
</script>
第二頁...
<script type="text/javascript">
$(function() {
$("body").live('swiperight', function (event, ui) {
$.mobile.changePage("introduction.html", "slide");
});
$("body").live('swipeleft', function (event, ui) {
$.mobile.changePage("properties.html", "slide");
});
});
</script>