码迷,mamicode.com
首页 > 其他好文 > 详细

setInterval 计时器

时间:2016-04-04 14:48:56      阅读:112      评论:0      收藏:0      [点我收藏+]

标签:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title> New Document </title>
<meta name="Generator" content="EditPlus">
<meta name="Author" content="">
<meta name="Keywords" content="">
<meta name="Description" content="">
</head>

<body>
<p id="pid"></p>
<button id="btn" onclick="stopTime()">停止</button>

<script>
var mytime = setInterval(function(){
getTime();
},1000);
function getTime(){
var d=new Date(); //创建date日期对象
var t=d.toLocaleTimeString(); //将日期对象转化成字符串
document.getElementById("pid").innerHTML=t; //在文本p中打印出来
}
function stopTime(){
clearInterval(mytime);
}
</script>
</body>
</html>

 

技术分享

setInterval 计时器

标签:

原文地址:http://www.cnblogs.com/147258llj/p/5351963.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!