1

我有一个带有一些页面的 jQuery Mobile 1.3.0 应用程序。我在 index.html 中有一个页面 (#menyside),我已将事件绑定到:

$(document).on('pagebeforeshow', '#menyside', function(event){
        // check local storage, and some times do this:
    $.mobile.changePage("otherPage.html", { transition: "slideup"} );
}
});

我检查本地存储中的一些值,并基于这些值我可能想以编程方式更改页面。这在我第一次打开应用程序时有效,但在我重新打开应用程序时无效(即文档已加载到浏览器中,但它被重新加载)

我是否绑定了错误的事件?我试图查看文档中的事件,但并没有真正找到更好的东西......

4

0 回答 0