这是 index.html
<script>
$(document).on('pagebeforeshow','id="container"', function(){
$.mobile.activePage.find('id="content-container"').load("content.html", function(){
$(this).parent().trigger('pagecreate');
});
});
</script>
content.html 页面在加载时必须从服务器检索数据。
执行上述代码时,在 content.html 页面中会触发哪个事件?
我已经尝试了以下事件,但它们都不起作用
- 显示前的页面
- 页面显示
- 设备就绪
- 页面创建
- 页面初始化
- 页面加载