码迷,mamicode.com
首页 > Web开发 > 详细

js 防止button频繁点击

时间:2016-08-23 16:44:31      阅读:197      评论:0      收藏:0      [点我收藏+]

标签:

 <input type="button" class="test" title="Select" value="Select" />

 <script type="text/javascript">
        $(function () {
            var clicktag = 0;
            $("input.test").click(function () {
                if (clicktag == 0) {
                    clicktag = 1;
                    setTimeout(function () { clicktag = 0 }, 5000);
                }
                else{
                 alert(‘请勿频繁点击!‘);
                }
            });
    });
  </script>

  

js 防止button频繁点击

标签:

原文地址:http://www.cnblogs.com/kangjing/p/5799607.html

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