jQuery Mobile changePage with direction

时间:2012-07-31 20:17:25

标签: jquery-mobile

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

1 个答案:

答案 0 :(得分:10)

文档: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
});