为了账号安全,请及时绑定邮箱和手机立即绑定

结束不好使了 什么情况

<!DOCTYPE HTML>
<html>
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    <title>定时器</title>
    <script type="text/javascript">
        var i;
        function start(){
            var time=new Date();
            var attime= time.getHours() + ":" + time.getMinutes() + ":" + time.getSeconds();
            document.getElementById('clock').value = attime;
            i = setInterval(start,1000);
        }
        function stop() {
            clearInterval(i);
        }
    </script>
</head>
<body>
<form>
    <input type="text" id="clock" size="50"  />
    <input type="button" value="Start" onclick="start()">
    <input type="button" value = "Stop" onclick = "stop()" />
</form>
</body>
</html>


正在回答

2 回答

定时器移出start函数

0 回复 有任何疑惑可以回复我~
<!DOCTYPE HTML>
<html>
<head>    
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">    
    <title>定时器</title>    
    <script type="text/javascript">        
        var i;        
        function start(){            
            var time=new Date();            
            var attime= time.getHours() + ":" + time.getMinutes() + ":" + time.getSeconds();
            document.getElementById('clock').value = attime;                
        }        
        i = setInterval(start,1000);    
    </script>
</head>
<body>
    <form>    
        <input type="text" id="clock" size="50"  />    
        <input type="button" value="Start" onclick="setInterval(start,1000);">    
    <    input type="button" value = "Stop" onclick = "clearInterval(i)" />
    </form>
</body>
</html>


0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

结束不好使了 什么情况

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信