這段代碼起到什么作用?
<!DOCTYPE HTML>
<html>
<head>
<script type="text/javascript">
? var num=0,i;
? function timedCount(){
? ? document.getElementById('txt').value=num;
? ? num=num+1;
? ? i=setTimeout(timedCount,1000);
? }
? ? setTimeout(timedCount,1000);
? function stopCount(){
? ? clearTimeout(i);
? }
</script>
</head>
<body>
? <form>
? ? <input type="text" id="txt">
? ? <input type="button" value="Stop" onClick="stopCount()">
? </form>
</body>
</html>
請問粗體的代碼起到什么作用?
2016-09-29
一秒鐘后執行函數timeCount(),當然函數內部調用自身主要是達到無限循環的目的
2016-09-29
一秒鐘后執行函數timeCount()