<!DOCTYPE HTML><html><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8"><title>定时器</title><script type="text/javascript"> var attime=setInterval(clock,1000); function clock(){ var time=new Date(); attime=time.getHours()+":"+time.getMinutes()+":"+time.getSeconds(); document.getElementById("clock").value = attime; }</script></head><body><form><input type="text" id="clock" size="50" /></form></body></html>
转载于:https://www.cnblogs.com/swust-li/p/4506976.html
相关资源:数据结构—成绩单生成器