有点Bug。。点了stop后停止,再点2次start后再点stop就停止不了了....
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>计时器</title>
<script type="text/javascript">
i=setInterval("clock()",1000);
function clock(){
var time=new Date();
document.getElementById("clock").value = time;
}
function mystart(){
i=setInterval("clock()",1000);
}
function myclear(){
clearInterval(i);
}
</script>
</head>
<body>
<form>
<input type="text" id="clock" size="50" />
<input type="button" value="Stop" onclick="myclear()" />
<input type="button" value="Start" onclick="mystart()" />
</form>
</body>
</html>