就是像人家论坛里的那样:3秒后系统将自动返回...
而且那个3是动态的,倒数的0,这个倒计时怎么用VBscript或是Javascript实现?
參考答案:给你一段代码:
<script language=javascript>
function timeCount(intTime){
if(intTime <= 0){
alert(111);
return;
}
intTime--;
document.getElementById("timeShow").innerHTML = intTime;
setTimeout("timeCount("+intTime+")",1000);
}
</script>
<span id=timeShow style="color:red">5</span>秒