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

juqery 实现 防止当前页面重复点击,以减轻服务器压力

时间:2016-11-05 02:45:52      阅读:245      评论:0      收藏:0      [点我收藏+]

标签:ready   document   ati   blog   href   read   color   oca   url   

    <script>
        //防止当前页面重复点击,以减轻服务器压力
        $(document).ready(function () {
            var current_url = location.pathname;
            $("a").each(function () {
                if (current_url == $(this).attr("href")) {
                    $(this).click(function () { return false; });
                    $(this).dblclick(function () { return false; });
                }
            });
            //alert(current_url)
        });
    </script>

juqery 实现 防止当前页面重复点击,以减轻服务器压力  演示地址:http://ade.chinacloudsites.cn/

juqery 实现 防止当前页面重复点击,以减轻服务器压力

标签:ready   document   ati   blog   href   read   color   oca   url   

原文地址:http://www.cnblogs.com/webenh/p/6032206.html

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