0
我有幾頁jquery移動頁面的html頁面;jquery-mobile點擊按鈕更改頁面
<div data-role="page" id="page1">
<div data-role="page" id="page2">
只需點擊一個按鈕,我想使用下面的代碼從第一頁轉到第二頁。
$.mobile.changePage('#page2', {
transition: 'slideup'
}
);
但該網站http://api.jquerymobile.com/jQuery.mobile.changePage/說;
注意:jQuery.mobile.changePage從jQuery Mobile 1.4.0開始已棄用,並將在1.5.0中刪除。改爲使用pagecontainer小部件的change()方法。
如何通過點擊按鈕來改變頁面。
我發現這個有用的http://stackoverflow.com/questions/9738948/jquery-mobile-change-page – user2994762 2014-10-02 01:13:36