js定时器
作者:互联网
js 定时器有以下两个方法:
- setInterval() :按照指定的周期(以毫秒计)来调用函数或计算表达式。方法会不停地调用函数,直到 clearInterval() 被调用或窗口被关闭。
- setTimeout() :在指定的毫秒数后调用函数或计算表达式。
举获取当前时间的例子
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> </head> <body> <div id="screen"> 时间 </div> </body> </html> <script> var screen=document.getElementById('screen') function getTime() { screen.innerHTML=new Date().toLocaleTimeString() } getTime() setInterval(getTime,1000) </script>
标签:定时器,getTime,screen,调用函数,js,setInterval 来源: https://www.cnblogs.com/wutong0702/p/15734389.html