我正在从外部 html 文件将内容加载到 div 中。这很简单(虽然我在让内容出现时遇到了一些问题,但在这里解决了:jquery mobile - loading content into a div)但是一旦加载了内容(它只是文本),中心就会出现这个旋转加载动画不会消失的屏幕。我不知道 JQuery 是否正在尝试加载其他内容或什么。
<script>
$(document).ready(function()
{
$('#welcome').click(function(){
console.log('clicked');
$('#mainContent').load('welcome.html');
$('#mainContent').trigger("pagecreate").trigger("refresh");
});
});
</script>