码迷,mamicode.com
首页 > 其他好文 > 详细

settimeout 回调函数

时间:2017-08-24 19:49:06      阅读:170      评论:0      收藏:0      [点我收藏+]

标签:nbsp   lang   cti   value   on()   out   html   ddn   put   

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>

<script type="text/javascript">
window.onload=function(){
var btn=document.getElementById("btn");
var num=document.getElementById("num");
var a=0;
btn.onclick=function(){

function addNumber(){
num.value=a;
a++;
setTimeout(addNumber,1000);
}
addNumber();
}

}
</script>

</head>

<body>

 


<input type="button" id="btn" value="点击增加">
<input type="text" id="num">

</body>
</html>

settimeout 回调函数

标签:nbsp   lang   cti   value   on()   out   html   ddn   put   

原文地址:http://www.cnblogs.com/gxw123/p/7424447.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!