码迷,mamicode.com
首页 > Web开发 > 详细

js之定时器

时间:2020-03-05 15:33:49      阅读:72      评论:0      收藏:0      [点我收藏+]

标签:function   cti   cli   rip   lang   def   htm   ext   alt   

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>定时器</title>

<style>
#id1{
width:150px;
height:20px;
}
</style>
</head>
<body>
<input type="text" id="id1" onclick="begin()">
<button onclick="end()">停止</button>
<script>
function showtime(){
var current=new Date().toLocaleString();
var elem=document.getElementById(‘id1‘);
elem.value=current;

}
begin()
var clock
function begin(){
if (clock==undefined)
{ showtime()
clock=setInterval(showtime,1000);
}
}
function end(){
clearInterval(clock)
clock=undefined
}




</script>


</body>
</html>

--------------------------------------------------------------
技术图片

 

 

 

js之定时器

标签:function   cti   cli   rip   lang   def   htm   ext   alt   

原文地址:https://www.cnblogs.com/cxydnxs/p/12420230.html

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