没有 结果
我想请问一下为什么这个不能运行
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>计时器</title>
</head>
<body>
<script type="text/javascript">
function be(){
var time=new Date();
document.getElementById("in").value=time;
}
i=setInterval("begin()",1000);
function st(){
clearInterval(i)
}
<input type="text" id="in" size="50px" />
<br/>
<input type="button" value="begin" onclick="be()"/>
<input type="button" value="stop" onclick="st()"/>
</script>
</body>
</html>