jquery mobile左右滑动切换页面

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"}

                       );

原文地址:https://www.cnblogs.com/lexus/p/3458779.html