我在Jquery Mobile中有一个多页模板,但是我在加载这个模板的页面后试图运行一个脚本(例如一个警告)。
导航到页面使用“#page1,#page2 ...”
非常感谢。
答案 0 :(得分:0)
例如,您可以收听pagebeforeshow
或pageload
事件。
$(document).on("pagebeforeshow", function() {
alert($.mobile.activePage.attr('id')); //this will get the active page id (like #page1)
});