我遇到了jQueryMobile的问题,我搜索了很多小时的答案而没有任何作用:(
我可以向左或向右滑动以移动下一个或上一个项目。
上面的代码工作正常但过了一段时间就变得疯了。
我在“A部分”,我向右滑动,我“B部分”,我向左滑动我回到“A”,然后我再次向右滑动,然后我转到“C” 如果我再次滑动,则在“C”上一次是连接的旋转木马
我从第C页传到A,然后我回到B返回C等... 经过十年的变化,它停在一个页面上,我刷这个更像是一个完全疯狂的滚动显示效果
下一个和上一个是网址
in html
<div data-role="page" data-dom-cache="false" class="actus-page" id="news" data-theme="a" data-next="http://wip17.kenjidev.com/n/39409" data-prev="http://wip17.kenjidev.com/n/39423" data-title="La vitalité de la traduction, levier décisif de la diversité éditoriale">
如果我把行加载页面,这个费用有无限的ajax页面(有超过5万个项目..)
和js
$( document ).on( "pageinit", "[data-role='page'].actus-page", function() {
var page = "#" + $( this ).attr( "id" ),
next = $( this ).jqmData( "next" ),
prev = $( this ).jqmData( "prev" );
if ( next ) {
//$.mobile.loadPage( next + ".htm" );
$( document ).on( "swipeleft", page, function() {
console.log(next +' : ' + page + ' : ' + prev );
$.mobile.changePage( next , {transition: "slide"});
});
}
if ( prev ) {
$( document ).on( "swiperight", page, function() {
console.log(prev +' : ' + page + ' : ' + next );
$.mobile.changePage( prev, { transition: "slide" , reverse: true } );
});
}
});
感谢您的帮助
编辑:已解决
感谢奥马尔的帮助
这里的代码解决了所有问题:
$( document ).on( "pageinit", ".actus-page", function() {
var
$page = $(this),
page = "#" + $page.attr( "id" ),
next = $page.jqmData( "next" ),
prev = $page.jqmData( "prev" );
if ( next ) {
$page.on( "swipeleft", function() {
$.mobile.changePage( next , {transition: "slide"});
});
}
if ( prev ) {
$page.on( "swiperight", function() {
$.mobile.changePage( prev, { transition: "slide" , reverse: true} );
});
}});
答案 0 :(得分:4)
如果每个页面都有ID,请使用以下代码动态地在DOM中的页面之间导航。
$(document).on('swipeleft swiperight', function (event) {
if(event.type == 'swiperight') {
var prevpage = '#' + $.mobile.activePage.prev('div[data-role="page"]')[0].id;
$.mobile.changePage(prevpage, {
transition: 'slide',
reverse: true
});
}
if(event.type == 'swipeleft') {
var nextpage = '#' + $.mobile.activePage.next('div[data-role="page"]')[0].id;
$.mobile.changePage(nextpage, {
transition: 'slide',
reverse: false
});
}
});