js 10秒钟倒计时
第一个:
<html> <head> <meta http-equiv= "Content-Type" content= "text/html; charset=gb2312" > <title>counter</title> <script language= "javascript" type= "text/JavaScript" > function Counter(nMax,nInterval) { this .maxTime=nMax; this .interval=nInterval; this .objId= "timer" ; this .obj= null ; this .num= this .maxTime; this .timer= null ; this .start=function() { this .obj=document.getElementById( this .objId); if ( this .num>0) setTimeout( this .run, this .interval*1000); }; this .run=function() { if (myCounter.num>0) { myCounter.num--; myCounter.obj.innerHTML=myCounter.num; myCounter.timer=setTimeout(myCounter.run,myCounter.interval*1000); } else clearTimeout(myCounter.timer); }; this .show=function() { document.write( "<span id=" + this .objId+ ">" + this .num+ "</span>" ); this .obj=document.getElementById( this .objId); //alert(this.obj.innerHTML); } } </script> </head> <body onload= "myCounter.start();" > <script language= "JavaScript" type= "text/JavaScript" > var myCounter= new Counter(10,1); </script> <p>现在剩下 <script language= "JavaScript" type= "text/JavaScript" > myCounter.show(); </script> 秒钟!</p> |
第二个:很中庸的倒计时,我用的这个
请等待<span id= "dd" >10</span>秒 <script type= "text/javascript" > function run(){ var s = document.getElementById( "dd" ); if (s.innerHTML == 0){ window.location.href= 'www.baidu.com' ; return false ; } s.innerHTML = s.innerHTML * 1 - 1; } window.setInterval( "run();" , 1000); </script> |
第三个:毫秒级的,比较紧张:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" > <script type= "text/javascript" > <!-- var duration=9900; var endTime = new Date().getTime() + duration + 100; function interval() { var n=(endTime- new Date().getTime())/1000; if (n<0) return ; document.getElementById( "timeout" ).innerHTML = n.toFixed(3); setTimeout(interval, 10); } window.onload=function() { interval(); } //--> </script> <head runat= "server" > <title>等待10秒</title> </head> <body> <form id= "form1" runat= "server" > <div> 现在剩下 <span id= "timeout" >10.000</span> 秒后 将自动跳转 </div> </form> </body> </html> |
js 10秒钟倒计时的更多相关文章
- js 10秒倒计时 功能
请等待<span id=</span>秒 <script type="text/javascript"> function run(){ var s ...
- 原生js 当前时间 倒计时代码
源:https://www.oschina.net/code/snippet_2318153_54763 <!DOCTYPE html> <html> <head> ...
- JS简单的倒计时(代码优化)
倒计时网上一大堆,所以也没有什么好说的,支持:1.年,月,日,天,时分秒等倒计时. JS代码如下: /* * js简单的倒计时 * @param {date,obj} 日期 对象格式 */ funct ...
- js验证码有效时间倒计时
js验证码有效时间倒计时 <!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type& ...
- JS实现自动倒计时
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta name ...
- IOS第六天(2:10秒倒计时)
****************10秒倒计时 #import "HMViewController.h" @interface HMViewController () <UIA ...
- crontab每10秒钟执行一次
1.使用sleep 在crontab中加入 * * * * * sleep 10; /bin/date >>/tmp/date.txt* * * * * sleep 20; /bin/da ...
- 每隔10秒钟打印一个“Helloworld”
/** * 每隔10秒钟打印一个“Helloworld” */ public class Test03 { public static void main(String[] args) throws ...
- js团购倒计时函数代码
<h1>团购啦!</h1><p>还剩<span id="times"></span></p> <SCR ...
随机推荐
- BZOJ K大数查询(分治)(Zjoi2013)
题目链接:http://www.lydsy.com/JudgeOnline/problem.php?id=3110 Description 有N个位置,M个操作.操作有两种,每次操作如果是1 a b ...
- URAL 1161 Stripies(数学+贪心)
Our chemical biologists have invented a new very useful form of life called stripies (in fact, they ...
- 使用streaming window函数统计用户不同时间段平均消费金额等指标
场景 现在餐厅老板已经不满足仅仅统计历史用户消费金额总数了,他想知道每个用户半年,每个月,每天,或者一小时消费的总额,来店消费的次数以及平均金额. 给出的例子计算的是每5秒,每30秒,每1分钟的用户消 ...
- Oracle的分页查询
--1:无ORDER BY排序的写法.(效率最高)--(经过测试,此方法成本最低,只嵌套一层,速度最快!即使查询的数据量再大,也几乎不受影响,速度依然!) SELECT * FROM (SELECT ...
- 机器学习(Machine Learning)&深入学习(Deep Learning)资料
<Brief History of Machine Learning> 介绍:这是一篇介绍机器学习历史的文章,介绍很全面,从感知机.神经网络.决策树.SVM.Adaboost 到随机森林. ...
- css 标签 垂直居中
<!DOCTYPE html > <html xmlns="http://www.w3.org/1999/xhtml"> <head> < ...
- java web sql注入测试(4)--如何防止该类缺陷发生
检查用户输入的合法性,确信输入的内容只包含合法的数据,数据检查应当在客户端和服务器端都执行之所以要执行服务器端验证,是为了弥补客户端验证机制脆弱的安全性.在客户端,攻击者完全有可能获得网页的源代码,修 ...
- SqlServer nvarchar中的中文字符匹配,更改SqlServer实例和数据库排序规则的办法
我们都知道在SqlServer中的nvarchar类型可以完美的存储诸如中文这种unicode字符,但是我们会发现有时候查询语句去查询nvarchar列的时候查不出来. 为什么nvarchar类型有时 ...
- setTimeout() 与 setInterval()
setTimeout() 从载入后延迟指定的时间去执行一个表达式或者是函数; 仅执行一次 ;和window.clearTimeout一起使用. setInterval() 在执行时,它从载 ...
- hibernate笔记03