ページの読み込み中に画像を表示しようとしています。しかし、スクリーンショットでわかるように、そのページは画像の前に読み込まれています。序列のせいかな。
<head>
<meta http-equiv="X-UA-Compatible" content="IE=EDGE"/>
<style>
div#loading {
top: 200 px;
margin: auto;
position: absolute;
z-index: 1000;
width: 160px;
height: 24px;
background: url(/images/loadingM.gif) no-repeat;
cursor: wait;
}
</style>
</head>
<body><div id="loading"></div></body>
そして、ページの下部で、このスクリプトを使用しました
window.onload = function(){ document.getElementById('loading').style.display='none';}
しかし、私のページはコンテンツの前に読み込まれません。したがって、一言で言えば、ページの読み込み時に読み込み中の画像が表示されません。