加了个按钮后 停止键不管用了?
<title>计时器</title>
<script type="text/javascript">
function clock(){
var time=new Date();
document.getElementById("clock").value = time;
}
function a(){
var i=setInterval(clock,100);}
</script>
</head>
<body>
<form>
<input type="text" id="clock" size="50" />
<input type="button" value="Start" onclick="a()"/>
<input type="button" value="Stop" onclick="clearInterval(i)"/>