0

是否可以通过代码而不是使用 JQuery Mobile 的物理按钮触发页面导航/转换 - 我需要一个脚本来根据逻辑重新定向页面并希望它使用流转换进行导航。

干杯

4

2 回答 2

1

是的!可以使用$.mobile.changePage('URL', { options } );

浏览链接

于 2013-05-16T09:36:07.467 回答
0

$.mobile.changePage('URL', { options } );现在已弃用。http://api.jquerymobile.com/jQuery.mobile.changePage/

正确的方法是使用:

  1. $.mobile.navigate("#bar", {transition: "slide", info: "info about the #bar hash"});
  2. $.mobile.pageContainer.pagecontainer("change", "target", {transition: "flow", changeHash: false, reload: true})

只是想我会根据我从其他线程中学到的东西来回答这个问题。我没有足够的声誉来放置其余的链接。只需在 Google 上搜索代码即可找到它们各自的 StackOverflow 线程。

于 2014-03-13T04:05:20.417 回答