4
是否可以指定changePage方向的類型以及changePage方向?喜歡的東西:$.mobile.changePage("mySpecialPlace.html", {transition: "slideup"}, {direction: reverse});
jQuery Mobile changePage方向
是否可以指定changePage方向的類型以及changePage方向?喜歡的東西:$.mobile.changePage("mySpecialPlace.html", {transition: "slideup"}, {direction: reverse});
jQuery Mobile changePage方向
文檔: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
});
完美。謝謝Jasper – Apollo 2012-07-31 20:51:57
docs man ...閱讀你正在使用的框架的文檔... – Jasper 2012-08-05 17:08:56
這是偉大的建議。我馬上開始!謝謝! – Apollo 2012-08-05 18:18:42