问答详情
源自:8-3 计时器setInterval()

为什么代码正确但是文本框却没有内容?

<!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>

提问者:Standpoint 2019-08-09 15:58

个回答

  • 1frgdhf
    2019-08-13 15:18:22

    有括号就不要加引号,有引号就不要加括号 window.setInterval("clock()",1000)

  • oneOkGuy
    2019-08-09 19:46:08

    window.setInterval(clock(),1000) clock函数使用错误;不用加();