慕莱坞7683194
2018-11-27 08:09
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>计时器</title>
<script type="text/javascript">
var num=0;
var i;
function startCount(){
document.getElementById('count').value=num;
num=num+1;
i=setTimeout("startCount()",1000);
}
function stopCount(){
clearTimeout(i);
}
</script>
</head>
<body>
<form>
<input type="text" id="count" />
<input type="button" value="start"onclick="startCount" />
<input type="button" value="stop" onclick="stopCount" />
</form>
</body>
</html>
函数调用的不对
<input type="text" id="count" />
<input type="button" value="Start" onclick="startCount()" />
<input type="button" value="Stop" onclick="stopCount()" />
把script标签及其内容放在input(id是text)标签之后.因为,html文件加载有顺序,先是head后是body.(......后面省略200字)
函数一定不要丢掉了后面的括号,因为有的时候括号里面是需要参数的,也不一定是个函数就有参数,但是startCount()这样写才是一个完整的函数。。所有onclick调函数的时候加上括号就可以了。。
下面的onclick调用函数时记得加()双括号,你加上括号在试一下。。
JavaScript进阶篇
468060 学习 · 21891 问题
相似问题