搜尋

首頁  >  問答  >  主體

javascript - js執行函數報錯Cannot set property 'value' of null怎麼解決?

<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>计时器</title>
<script type="text/javascript">
  var num=0;
  function startCount() {
    document.getElementById('count').value=num;
    num=num+1;
    setTimeout(startCount(),1000);
  }
  startCount();
</script>
</head>
<body>
<form>
<input type="text" id="count" />
</form>
</body>
</html>

為什麼13行直接寫入startCount()不行呢?提示報錯Uncaught TypeError: Cannot set property 'value' of null。我在html標籤下方寫一個script標籤,裡面寫startCount()又可以了,或是13行寫成setTimeout(startCount(),1000);也是可以運作的,這是為什麼呢?

phpcn_u1582phpcn_u15822773 天前1480

全部回覆(1)我來回復

  • 代言

    代言2017-06-12 09:27:38

    dom還沒完全載入完成原因,所以js建議放在body下面執行,或是用window.onload就能放在head頭部執行。

    回覆
    0
  • 取消回覆