zoukankan      html  css  js  c++  java
  • ASP.NET 判断GRIDVIEW的checkbox是否选中

    C# 实现

     protected void btSubmit_Click(object sender, EventArgs e)
        {
            List<CheckBox> chkList = new List<CheckBox>();
            foreach (GridViewRow row in this.GVReport.Rows)
            {
                if (row.RowType == DataControlRowType.DataRow)
                {
                    CheckBox chk = row.FindControl("cbActionFlag") as CheckBox;
                    if (chk.Checked)
                    {
                        chkList.Add(chk);
                    }
                }
            }
            if (chkList.Count == 0)
            {
                ClientScript.RegisterStartupScript(typeof(string), "msgChk", "alert('please select active flag!');", true);
            }
        }

    Jquery 实现

    <script type="text/jscript" language="javascript" src="<%=ResolveUrl("~/js/jquery-1.5.2.js") %>"></script>
    <script type="text/javascript">
         var CHK_ACTION_FLAG = function(){
             $("#<%=btSubmit.ClientID%>").click(function(){
                var arrList = $("table[id$='GVReport']").find("[id$='cbActionFlag']:checked");
                if( arrList.length >0){ return true;}
                else{ return false;}
             });
         }
          $(document).ready(CHK_ACTION_FLAG);
    </script>

  • 相关阅读:
    codeforces 985 F. Isomorphic Strings
    Educational Codeforces Round 44
    codeforces 979D
    ARC060 Digit Sum II
    Iroha and Haiku II
    Unhappy Hacking II
    Just h-index 2018湘潭邀请赛
    [HAOI2007]理想的正方形
    P1231 教辅的组成
    最小割数学形式
  • 原文地址:https://www.cnblogs.com/zhangchenliang/p/2077730.html
Copyright © 2011-2022 走看看