<!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();
attime=time.getHours()+":"+time.getMinutes()+":"+time.getSeconds();
document.getElementById("clock").value = attime;
}
setInterval(clock,1000);
</script>
</head>
<body>
<form>
<input type="text" id="clock" size="50" style="background:#000;color:#00ff00;width:50px"; />
</form>
</body>
</html>
有影响的,这个网页编辑器有问题,会自己刷新时间,你换到dw上不加计时器时间就不动了
body标签中的<input type="text">中的style最后多了一个";"号
当然有,这个是让你的定时器的秒针走动的啊,没有这个你这个定时器不起作用啊