是否可以通过代码而不是使用 JQuery Mobile 的物理按钮触发页面导航/转换 - 我需要一个脚本来根据逻辑重新定向页面并希望它使用流转换进行导航。
干杯
是的!可以使用$.mobile.changePage('URL', { options } );
浏览链接
$.mobile.changePage('URL', { options } );
现在已弃用。http://api.jquerymobile.com/jQuery.mobile.changePage/
正确的方法是使用:
$.mobile.navigate("#bar", {transition: "slide", info: "info about the #bar hash"});
$.mobile.pageContainer.pagecontainer("change", "target", {transition: "flow", changeHash: false, reload: true})
只是想我会根据我从其他线程中学到的东西来回答这个问题。我没有足够的声誉来放置其余的链接。只需在 Google 上搜索代码即可找到它们各自的 StackOverflow 线程。