我尝试在加载页面后显示我的页面。
为了做到这一点,
<div id ="loadingDiv">
<img src="urltogif">
</div>
我创建了上面的 div 并使用了下面的 js。
$('#loadingDiv')
.hide() // hide it initially
.ajaxStart(function() {
$(this).show();
})
.ajaxStop(function() {
$(this).hide();
});
但 gif 图像始终显示在页面上。这是什么原因?