首页 > 编程 > JavaScript > 正文

javascript实现秒表计时器的制作方法

2019-11-19 17:33:35
字体:
来源:转载
供稿:网友

本文实例为大家分享了js秒表计时器的制作代码,供大家参考,具体内容如下

具体代码:

<!DOCTYPE html><html lang="en"><head><meta charset="gb2312"><title>Document</title><style>div{margin-top:40px;margin-left:25px;margin-bottom:10px;width:20px;height:20px;}input{width:30px;height:30px;margin-left:20px;font-size:20px;color:#fff;background: #000;border:none;outline: none;}</style></head><body><div></div><input type="button" value="开始" /><input type="button" value="停止" /></body><script type="text/javascript">//2.实现秒表功能,实现时 分 秒 毫秒 点击1开始计时,2结束计时;var oDiv=document.getElementsByTagName('div')[0];var Btn1=document.getElementsByTagName('input')[0];var Btn2=document.getElementsByTagName('input')[1];var ms=0;var sec=0;var min=0;var hour=0;Btn1.onclick=function(){timer=setInterval(function(){var str_hour=hour;var str_min=min;var str_sec=sec;if(hour<10){str_hour="0"+hour;}if(min<10){str_min="0"+min;}if(sec<10){str_sec="0"+sec;}var time=str_hour+':'+str_min+':'+str_sec+':'+ms;oDiv.innerHTML=time;ms=ms+50;if(ms>999){ms=0;sec++;}if(sec>59){sec=0;min++;}if(min>59){min=0;hour++;}},50)}Btn2.onclick=function(){clearInterval(timer);}</script></html>

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持武林网。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表