码迷,mamicode.com
首页 > 其他好文 > 详细

三连击

时间:2019-12-02 17:19:27      阅读:105      评论:0      收藏:0      [点我收藏+]

标签:height   bsp   ++   func   button   input   int   nbsp   alert   

<html>
</head>
<script>
    function clickTime() {
        var text_ = document.form.text_;
        text_.value++;
        var T = setInterval(() => {
            text_.value = "0";
            clearInterval(T)
        }, 1000);
        if (text_.value == "3") {
            alert("点击了三次");
            text_.value = "0";
        }
    }
</script>
</head>

<body onclick="clickTime()">
    <form name="form" style="margin:20px auto;width:15px;height: 15px;">
        <input type="button" name="text_" value=0 disabled style="margin:20px auto;width:28px;height: 20px;">
    </form>
</body>

</html>

 

三连击

标签:height   bsp   ++   func   button   input   int   nbsp   alert   

原文地址:https://www.cnblogs.com/wulicute-TS/p/11971355.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!