qq_陳大郎_03780931
2016-08-08 09:15:01
如下所示,為什么點擊Reset按鈕Interval并沒有被重置呢?<!DOCTYPE HTML><html><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8"><title>計時器</title><script type="text/javascript">? ?function clock(){? ? ? var time=new Date(); ? ? ? ? ? ? ? ? ? ?? ? ? document.getElementById("clock").value = time;? ?}? ?var i=setInterval("clock()",1000);?</script></head><body>? <form>? ? <input type="text" id="clock" size="50" ?/>? ? <input type="button" value="Stop" ?onclick="clearInterval(i)"/>? ? <input type="button" value="Reset" ?onclick="setInterval("clock()",1000)"/>? </form></body></html>
1 回答

qq_陳大郎_03780931
TA貢獻1條經驗 獲得超0個贊
原來是雙引號嵌套的問題,改成這樣就好了:
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>計時器</title>
<script type="text/javascript">
? ?function clock(){
? ? ? var time=new Date(); ? ? ? ? ? ? ? ? ? ?
? ? ? document.getElementById("clock").value = time;
? ?}
? ?var i=setInterval("clock()",1000);?
</script>
</head>
<body>
? <form>
? ? <input type="text" id="clock" size="50" ?/>
? ? <input type="button" value="Stop" ?onclick="clearInterval(i)"/>
? ? <input type="button" value="Reset" ?onclick="setInterval('clock()',1000)"/>
? </form>
<body>
</html>
添加回答
舉報
0/150
提交
取消