是否可以通过代码而不是使用JQuery Mobile的物理按钮触发页面导航/转换 - 我需要一个脚本来根据逻辑重定向页面并希望它使用流转换进行导航。
干杯
答案 0 :(得分:1)
是的!可以使用$.mobile.changePage('URL', { options } );
浏览link
答案 1 :(得分:0)
$.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主题。