关于变量赋值的问题
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>计时器</title> <script type="text/javascript"> var i=setInterval(clock,100); //位置1 function clock(){ var time=new Date(); document.getElementById("clock").value = time.getHours()+":"+time.getMinutes()+":"+time.getSeconds(); } function start(){ i=setInterval("clock()",100); //位置2 } function stop(){ clearInterval(i); } </script> </head> <body> <form> <input type="text" id="clock" size="50" /> <input type="button" value="Start" onclick="start()"/> <input type="button" value="Stop" onclick="stop()"/> </form> </body> </html>
代码中位置1 i变量已经赋值为什么 位置2的function中仍然要赋值