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倒计时的主要内容,如果未能解决你的问题,请参考以下文章

js和jq倒计时10S

获取当前时间 和 10s倒计时案例

Java 线程实例 刷碗烧水和倒计时

用定时器实现10s秒表的计时功能,精确到小数点后一位,即能够有0.1s显示,有开始,暂停,清零的功能(C语

shell脚本练习实例详解

基于STM32的简易售卖机