jquery +做CheckBoxList全選,反選

來源:互聯網
上載者:User

以前我們做CheckBoxList全選,反選,一般用Aspx+CodeFile、或者用JavaScript

現在我們可以用JQuery來幫我Easy Choose.

這裡我來寫三種:

第一種

全選

    $(".checkBoxSelect").each(function() {
                $(this).attr("checked", true); 
     });

反選

     $(".checkBoxSelect").each(function() {
                        if($(this).attr("checked"))
                        {
                                $(this).attr("checked", false);
                        }
                        else
                        {
                                $(this).attr("checked", true);
                        }
                });

第二種

全選

    $("#<%=CheckBoxList.ClientID %> input:checkbox").each(function(index,domEle){               if(this.type=="checkbox")                   this.checked=true;    });反選     $("#<%=CheckBoxList.ClientID %> input:checkbox").each(function(index,domEle){              if(this.type=="checkbox")                  this.checked=!this.checked;    });第三種     使用toggle方式進行全選、反選           btnSelAll.click(function() {
               jqClass.toggleChecks(null);
           });

           var jqClass= {
                 //Toggle Item For CheckBoxList
                 toggleChecks: function(b) {
                          $("#<%=cblContact.ClientID %> input[type=checkbox]").each(function() {
                                    if (typeof this.checked != "undefined") {
                                              if (b == null)
                                                    this.checked = (!this.checked);
                                              else
                                                    this.checked = b;
                                     }
                            });
              }
       }

第四種:Plugin 方式

(function($$) {
    $.fn.jCheckboxList = function(opt) {
        var option = {
            root: '',  //  checkbox id of "select all"
            childCls: ''  // another checkboxs
        };
        var opt = $.extend({}, option, opt);
        var el = $(this).attr('id');
        var allchild = "#" + el + " :input[type=checkbox]." + opt.childCls;
        $("#" + opt.root).click(function() {
            var isChecked = $(this).attr('checked');
            if (isChecked)
                $(allchild).attr('checked', true);
            else
                $(allchild).attr('checked', false);
        });

        $.each($(allchild), function(i, v) {
            var all = $(allchild).length;
            $(v).click(function() {
                var count = $(allchild + "[checked]").length;
                if (count == all)
                    $("#" + opt.root).attr('checked', true);
                else
                    $("#" + opt.root).attr('checked', false);
            });
        });
    }
})();

 

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.