0
我使用$ .mobile.changePage('#login','fade');但我仍然得到silde tansition當我點擊圖片進行更改頁面時,如何定義轉換?
我使用$ .mobile.changePage('#login','fade');但我仍然得到silde tansition當我點擊圖片進行更改頁面時,如何定義轉換?
我認爲你是後:
$.mobile.changePage('#login', {transition: 'fade'});
或:
$.mobile.changePage($('#login'), {transition: 'fade'});
第一個參數是URL或jQuery的元素,第二個參數options
是一個對象hashmap(你可以使用JSON表示法來放置很多選項)。
看到這個頁面的所有選項,在「實例」部分展示瞭如何在多個選項傳遞: