Standpoint
2019-08-09 15:58
<!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;
}
window.setInterval(clock(),1000)
</script>
</head>
<body>
<form>
<input type="text" id="clock" size="50"/>
</form>
</body>
</html>
有括号就不要加引号,有引号就不要加括号 window.setInterval("clock()",1000)
window.setInterval(clock(),1000) clock函数使用错误;不用加();
JavaScript进阶篇
468194 学习 · 21891 问题
相似问题