我正在尝试用不同的内容和幻灯片动画滑动同一页面。我正在使用 jquery 手机。但是,在没有幻灯片动画的页面转换之后。我错过了什么?
$( document ).on( "pageinit", "#MatchStats", function() {
$( document ).on( "swipeleft swiperight", "#MatchStats", function( e ) {
if ( e.type === "swipeleft" ) {
$.mobile.changePage( '#MatchStats', { transition: "slide",allowSamePageTransition: true });
getMatchStats(indexMathces,GroupID);
}
else if ( e.type === "swiperight" ) {
$.mobile.changePage( '#MatchStats' , {
transition: "slide",
allowSamePageTransition: true,
reverse: true});
getMatchStats(indexMathces,GroupID);
}
});
});