• GridView全选和反选用JQuery实现


    GridView添加模板列

    <asp:TemplateField>
    <ItemTemplate>
    <asp:CheckBox ID="CheckBox1" runat="server" />
    </ItemTemplate>
    <HeaderTemplate>
    <input id="SelectAll" type="checkbox" />
    </HeaderTemplate>
    </asp:TemplateField>

    JavaScript:

    $("#SelectAll").click(function () {
    if ($(this).attr("checked")) {
    $('#GridView1 input[type=checkbox]').attr("checked", true);
    }
    else {
    $('#GridView1 input[type=checkbox]').attr("checked", false);
    }
    });




     

  • 相关阅读:
    P3811乘法逆元
    P4549裴蜀定理
    备用代码区
    其他板子整理
    DP
    图论板子整理
    约数
    浅谈假学习假努力
    质数
    P1019 单词接龙
  • 原文地址:https://www.cnblogs.com/shenyixin/p/2298419.html
Copyright © 2020-2023  润新知