我有一个带有空 div 的 jQuery Mobile 页面,我想像这样将内容加载到这个 div 中:
单独的js脚本
$('#myPage').live('pagebeforecreate', function(event) {
$("#content").html('<p>My html</p>');
});
html
<div data-role="content" id="content">
</div>
页面加载后,我可以在一秒钟内看到我的内容,但之后 jQuery Mobile 只显示空 div。我怎样才能防止这种情况并保留我的内容?我使用了 pagebeforeload 事件,因为我想要 jQuery Mobile 来增强我的标记。