我正在使用jQuery Mobile进行Phonegap项目。我收到以下问题:
1)我有3个名为A,B,C的页面。我正在使用jQuery Mobile导航来回移动:
$.mobile.changePage("B.html", { transition: "slide" });
2)并且要从C返回到A:
$.mobile.changePage("C.html", { transition: "slide" });
3)下次当我单击“下一步”按钮时,应用程序显示B页一秒钟,然后再次跳回到A页,并且每次跳转的次数都会增加。
我经历过this和this,但是不幸的是,没有一种解决方案对我有用。我正在使用jQuery mobile版本1.4.5。请为此建议解决方法。