jquery,倒计时
web前端-js教程
定义和用法手机修改网页源码,ubuntu 14阿里源,共享爬虫特征数据,php 碎片,诚信seo优化lzw
setInterval() 方法可按照指定的周期(以毫秒计)来调用函数或计算表达式。计步器源码,ubuntu安装网络配置,python爬虫 微博,php printf,seo注册率lzw
setInterval() 方法会不停地调用函数,直到 clearInterval() 被调用或窗口被关闭。由 setInterval() 返回的 ID 值可用作 clearInterval() 方法的参数。下面举例
微信商城源码 asp.net,ubuntu阿里云下载,爬虫漫画网站,tools。php,seo思维求职lzw
jquery简单倒计时 var intDiff = parseInt(60);//倒计时总秒数量 function timer(intDiff) { window.setInterval(function() { var day = 0, hour = 0, minute = 0, second = 0;//时间默认值 if (intDiff > 0) { day = Math.floor(intDiff / (60 * 60 * 24)); hour = Math.floor(intDiff / (60 * 60)) - (day * 24); minute = Math.floor(intDiff / 60) - (day * 24 * 60) - (hour * 60); second = Math.floor(intDiff) - (day * 24 * 60 * 60) - (hour * 60 * 60) - (minute * 60); } if (minute <= 9) minute = '0' + minute; if (second <= 9) second = '0' + second; $('#day_show').html(day + "天"); $('#hour_show').html('' + hour + '时'); $('#minute_show').html('' + minute + '分'); $('#second_show').html('' + second + '秒'); intDiff--; }, 1000); } $(function() { timer(intDiff); });网页上的倒计时
0天 0时 0分 0秒