请问为什么我没有调用定时器的函数,每次提交之后,text里面会自动显示时间,而且是在自动刷新的,点击停止按钮也没有效果
<!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;
}
function st(){
var ti = setInterval(clock,500);
}
</script>
</head>
<body>
<form>
<input type="text" id="clock" size="50" />
<input type="button" value="Stop" onclick="clearInterval(ti)"/>
<input type="button" value="Start" onclick="st()"/>
</form>
</body>
</html>