off("click")的使用

Posted 一千二

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了off("click")的使用相关的知识,希望对你有一定的参考价值。

今天遇到一个奇怪的问题,用鼠标点击一次html button,但是从firebug查看,重复发送了N条请求,写alter调试,发现页面点击一次Click,被浏览器重复捕获N次!
    $("ul.list-group li").click(function () {   //改为 $("ul.list-group li").off("click").click(function () { 问题得以解决!
        //debugger;
        //alert(133333);
        $(this).addClass("active").siblings().removeClass("active");
        var loadFile = ‘‘;
        switch ($(this).attr(‘id‘))
        {
            case ‘difficultSupport‘:
                loadFile = "index.php?extendModule-difficultSupport-index-ajax";
                break;
            case ‘protectRight‘:
                loadFile = "index.php?extendModule-protectRight-index-ajax";
                break;
            case ‘venueBooking‘:
                loadFile = "index.php?extendModule-venueBooking-index-ajax";
                break;
            case ‘policyCoduct‘:
                loadFile = "index.php?extendModule-policyCoduct-index-ajax";
                break;
            case ‘legalAid‘:
                loadFile = "index.php?extendModule-legalAid-index-ajax";
                break;
            case ‘psycholConsult‘:
                loadFile = "index.php?extendModule-psycholConsult-index-ajax";
                break;
            case ‘offlineTraining‘:
                loadFile = "index.php?extendModule-protectRight-index-ajax";
                break;
            case ‘askAbout‘:
                loadFile = "index.php?extendModule-askAbout-index-ajax";
                break;
            default:
        }
        $("div #detail").load(loadFile, function (response, status, xhr) {
            $(‘div #detail‘).html(response);
        });
    });

以上是关于off("click")的使用的主要内容,如果未能解决你的问题,请参考以下文章

如何通过js实现添加事件监听和移除事件监听

elementUI的Switch开关怎么绑定ajax请求来改变状态

如何保留DOM中由.remove()剥离的信息

使用 STRUTS 禁用自动完成(autocomplete="off")

Spring Form、commandName 和 autocomplete="off"

如何在反应本机纸张 TextInput 上禁用自动完成功能?在网络上使用 autoComplete="off" 呈现 autocomplete="noop"