js倒计时代码 支持同一页面多个倒计时代码

  1. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">   
  2. <html>   
  3.  <head>   
  4.   
  5.  </head>   
  6.   
  7.  <body>   
  8.  k686绿色软件 - http://www.k686.com   
  9. <script>   
  10. function countDown( maxtime,fn )   
  11. {       
  12.    var timer = setInterval(function()   
  13.    {   
  14.        if(maxtime>=0){      
  15.              minutes = Math.floor(maxtime/60);      
  16.              seconds = Math.floor(maxtime%60);      
  17.              msg = "距离结束还有"+minutes+"分"+seconds+"秒";      
  18.              fn( msg );   
  19.              if(maxtime == 5*60) alert('注意,还有5分钟!');      
  20.              --maxtime;      
  21.         }      
  22.          else{      
  23.             clearInterval( timer );   
  24.             fn("时间到,结束!");     
  25.         }      
  26.     }, 1000);   
  27. }   
  28. </script>   
  29.   
  30. <div id="timer1" style="color:red"></div>   
  31. <div id="timer2" style="color:red"></div>   
  32.   
  33.  <script>   
  34.     countDown( 6,function( msg )   
  35.     {   
  36.         document.getElementById('timer1').innerHTML = msg;   
  37.     });   
  38.        
  39.     countDown( 6000,function( msg )   
  40.     {   
  41.         document.getElementById('timer2').innerHTML = msg;   
  42.     })   
  43.  </script>   
  44.  </body>   
  45. </html>  
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值