jquery mobile左右滑动切换页面

$(function() {
$("body").bind('swiperight', function() {
  $.mobile.changePage("#foo", {transition: "slide", reverse:true},false);
}).bind('swipeleft', function() {
   $.mobile.changePage("#bar", { transition: "slide"},true);
});

}); 

 

    $.mobile.changePage("save.html",
                        {type:"post",
                        data:$("form#dataFrm").serialize(),
                        transition:"slide"}

                       ); 

posted on 2012-06-18 23:13  民谣  阅读(5982)  评论(2编辑  收藏  举报

导航