猿问

怎么才能停下来-。-

怎么才能让自动添加停止下来?

<!DOCTYPE HTML>

<html>

<head>

<meta http-equiv="Content-Type" content="text/html; charset=utf-8">

<title>无标题文档</title>

</head>

 

</head>

<body>

<ul id="ultt">

     <li >勇士</li>

     <li >骑士</li>

     <li id="litt">雷霆</li> 

      <li>火箭</li>  

      

  </ul>

 <script>

     function test (){

      var aobj=  document.createElement("li");

          aobj.innerHTML="快船";

           ultt.appendChild(aobj )

     }

      function tian (){

    var i =setInterval('test()',1000)

      

      }

 </script>


<input type="button" value="自动添加" onclick="tian ()" />

<input type="button" value="停止添加" onclick="clearInterval(i)" />

</body>

</html>


温水里的小白
浏览 1353回答 2
2回答

刚毅87

你 JS 写错位置了 不应该写在 body 中,写在</body>和</html>之间
随时随地看视频慕课网APP
我要回答