10s倒计时
Posted 天--安静
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了10s倒计时相关的知识,希望对你有一定的参考价值。
<!DOCTYPE html>
<html>
<meta http-equiv="Content-Type" content="text/html;charset=utf8">
<head>
<title>倒计时</title>
</head>
<body>
请等待<span id="dd">10</span>秒
<script type="text/javascript">
function run(){
var s = document.getElementById("dd");
if(s.innerHTML == 0){
window.location.href=‘#‘;
return false;
}
s.innerHTML = s.innerHTML * 1 - 1;
}
setInterval("run();", 1000);
</script>
</body>
</html>
以上是关于10s倒计时的主要内容,如果未能解决你的问题,请参考以下文章