为啥不显示结果
<!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 weeekday = ["星期日","星期一","星期二","星期三","星期四","星期五","星期六"]
var time=new Date();
attime=time.getHours()+":"time.getMintues()+":"time.getSeconds()+weekday[time.getDay()];
document.getElementById("clock").value = attime;
}
setInterval(clock,1000);
</script>
</head>
<body>
<form>
<input type="text" id="clock" size="100"style="background:#000;color:#00ff00;width:200px"; />
</form>
</body>
</html>