我在带有phonegap的jquery移动应用程序中有三个单独的html页面。从一个页面onChange事件调用第二页。但是第二页pageinit在该页面关闭后立即调用并进入第三页。我没有在页面初始化或其他一些元素中调用第三页。在jquery移动更改页面事件中是否可以使用这样的任何已知问题?
//called from first page link button
function mysubmit()
{
$.mobile.changePage("secondpage.html",{reloadPage:true,transition: "none"});
}
//This event fired
$(document).delegate("#secondpage_id", "pageinit", function() {
alert('secondpage_id was just created by jQuery Mobile!');
});
一旦解雇,它就会关闭第二页并显示第三页。
答案 0 :(得分:0)
通过从首页链接按钮中删除data-rel=back
属性来解决此问题。