标签:定时器 out int ntb cti html top 事件 time
定时器 在指定的时间去执行事件
1.获取索要显示区域的元素对象
var show = document.getElementById("showTime");
var timer ;
function fun(){
var now = new Date();
show.innerHTML = now;
timer = setInterval(fun,1000);
}
function stop(){
clearInterval(timer);
}
一次性定时器 setTimeout
永久定时器 setInterval
标签:定时器 out int ntb cti html top 事件 time
原文地址:https://www.cnblogs.com/ddjps/p/10098647.html