私はこのスクリプトを書きました。私によると、この画像はアラートブロックの後に現れたり消えたりするはずですが、それは起こっていません。
<html>
<head>
</head>
<body>
<div id='idDivread'
style="position:absolute;
z-index:100;
width:expression(document.body.offsetWidth +'px');
height:expression(document.body.offsetHeight + 'px');
left:0px;
top:0px;
display:'none';
text-align:center;
background-color:#EEF4FD;filter:alpha(opacity=70).">
<img src='images/Read.gif'
style="position:absolute;
top:expression(document.body.offsetHeight/2 -36 +'px')">
</div>
<div>
<input type="button" value="click me" onclick ="change();">
</div>
<p id="example"></p>
</body>
<script type ="text/javascript">
function change()
{
idDivread.style.display='';
setTimeout(function(){
alert("Hello")
},3000);
idDivread.style.display='none';
}
</script>
何か助けはありますか?ありがとう。