加载多页模板Jquery Mobile的页面后运行一个事件

时间:2013-12-14 21:28:47

标签: javascript jquery jquery-mobile mobile multipage

我在Jquery Mobile中有一个多页模板,但是我在加载这个模板的页面后试图运行一个脚本(例如一个警告)。

导航到页面使用“#page1,#page2 ...”

非常感谢。

1 个答案:

答案 0 :(得分:0)

例如,您可以收听pagebeforeshowpageload事件。

$(document).on("pagebeforeshow", function() {
    alert($.mobile.activePage.attr('id')); //this will get the active page id (like #page1)
});​

此处列出了所有活动http://api.jquerymobile.com/category/events/