是否可以同时指定 changePage 方向的类型和该 changePage 的方向?类似:$.mobile.changePage("mySpecialPlace.html", {transition: "slideup"}, {direction: reverse});

最佳答案

文档:http://jquerymobile.com/demos/1.1.1/docs/api/methods.html

您已经很接近了,但是请查看我上面链接到的文档,它会向您展示您可以为 .changePage() 方法指定的所有选项的确切结构。

$.mobile.changePage("mySpecialPlace.html", {
    transition : "slideup",
    reverse    : true        //notice options are passed via the same object
});

关于jquery-mobile - 带有方向的 jQuery Mobile changePage,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/11748305/

10-09 18:44