setInterval不工作虽然它应该

时间:2018-03-23 18:49:33

标签: javascript setinterval

我正在尝试使用setInterval但它不起作用,我不知道它的原因是什么,我甚至只是从教程网站复制了一个setInterval函数,但它仍然无效。 ..

function reload() {
console.log("reload");
setInterval(function(){ alert("Hello"); }, 1000);
}

HTML:

<!DOCTYPE html>

<html>
  <head>
    <title>php!</title>
    <link rel="stylesheet" type="text/css" href="basic.css"/>
    <script src="auto-refresh.js"></script>
  </head>
  <body onload="reload()">

  <?php

  ini_set('display_errors', 'on');
  error_reporting(E_ALL);

  include 'headline.php';

  ?>
  <iframe id="chat-window" name="chat-frame" src="chat.php" height="500" width="800">

  </iframe>
  <form method="post"  target="chat-frame" action="chat.php">
    <input id="sentence" type="text" name="enter" placeholder="Enter whatever you like" value="<?php echo $_POST["enter"];?>" />
    <input type="submit" value="Send">
  </form>

  </body>
</html>

1 个答案:

答案 0 :(得分:1)

我不是什么问题,但这是一个有效的版本

enter image description here

function reload() {
console.log("reload");
setInterval(function(){ alert("Hello"); }, 1000);
}
<body onload="reload()">
</body>