代码这么写的话 每隔1000毫秒执行一次 clock函数不行吗?为什么,麻烦帮详细解答下,不胜感谢!
<script type="text/javascript">
var attime;
function clock(){
var time=new Date();
var attime=time.getHours()+":"+time.getMinutes()+":"+time.getSeconds();
document.write(attime);
}
setInterval("clock()",1000);
</script>
1000是可以的,错误在你把时间没有赋值给文本框的内容。
document.write(attime); //这行改成这document.getElementById("clock").value = attime;
setInterval(clock,1000);