這樣寫為什么不行啊
<!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 a = setInterval(clock,100)
</script>
</head>
<body>
? <form>
? ? <input type="text" id="clock" size="50" ?/>
? ? <input type="button" value="Stop" onclick="clearInterval(a)" />
? </form>
</body>
</html>
2015-11-25
這樣寫是正確的,因為imooc網頁自身的原因導致你所觀察到的結果不對。我將這段代碼放在DW中是完全沒問題的。
2015-11-24
這樣不符合邏輯啊。。。。