我的页面包含的是动态的,如果包含的页面已经完成则如何显示页面,如果不是我等待消息出现。
我使用了jquery mobile。
$("#A1").live('pageshow', function()
{
// code for fill the page
}
答案 0 :(得分:0)
您可以处理pagebeforeshow
event。您的代码将在页面显示之前执行:
$(document).on('pagebeforeshow', '#A1', function(ev){
// your code
});