JS Window对象 计时器setInterval() 在执行时,从载入页面后每隔指定的时间执行代码。
计时器setInterval()
任务
补充右边编辑器第10行,获取时间,格式"时:分:秒",并赋值给attime。
补充右边编辑器第13行,使用setInterval()计时器来显示动态时间。
<!DOCTYPE HTML> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>定时器</title> <script type="text/javascript"> var attime; function clock(){ var time = new Date(); var hour = time.getHours(); if(hour<10) { hour = "0"+hour; } var minu = time.getMinutes(); if(minu<10) { minu = "0"+minu; } var sec = time.getSeconds(); if(sec<10) { sec = "0"+sec; } attime = hour+":"+minu+":"+sec; document.getElementById("clock").value = attime; } attime = setInterval(clock,1000); </script> </head> <body> <form> <input type="text" id="clock" size="50" /> </form> </body> </html>