[ASP.NET]ASP.Net Repeater checkbox 全選 使用 JavaScript and jQuery

ASP.Net Repeater 全選 使用 JavaScript and jQuery

參考網址如下

https://www.aspsnippets.com/Articles/Check-Uncheck-all-Select-all-CheckBoxes-in-ASPNet-Repeater-using-JavaScript-and-jQuery.aspx

code的全選有點問題我改了一點如下

 

 <script>
        $(function () {
            $("#tblCustomers [id*=chkHeader]").click(function () {

                if ($(this).is(":checked")) {
                    $("#tblCustomers [id*=chkRow]").prop('checked', true);
                } else {
                    $("#tblCustomers [id*=chkRow]").prop('checked', false);
                }
            });
            $("#tblCustomers [id*=chkRow]").click(function () {
                if ($("#tblCustomers [id*=chkRow]").length == $("#tblCustomers [id*=chkRow]:checked").length) {
                    $("#tblCustomers [id*=chkHeader]").attr("checked", true);
                } else {
                    $("#tblCustomers [id*=chkHeader]").prop('checked', false);
                }
            });
        });
    </script>

 

以上文章僅用紀錄資料使用.....