ページを開くときに問題が発生しました。ページを開く前に読み込み中の画像を開く必要があります。どうすればよいですか
<style>
#dvLoading
{
background:#000 url(images/ajax-loading.gif) no-repeat center center;
height: 100px;
width: 100px;
position: fixed;
z-index: 1000;
left: 50%;
top: 50%;
margin: -25px 0 0 -25px;
}
</style>
$(window).load(function(){
$('#dvLoading').fadeOut(2000);
});