首页 > 代码库 > 获取CheckBox的值
获取CheckBox的值
前台获取
function chkCheckBox() { var code_arr = new Array(); //定义一数组 $(‘.C_B‘).each(function () { if ($(this).prop("checked")) { if ($(this).val() != "") code_arr.push($(this).val()); } }); if (code_arr.length == "") { alert("请先选择之后再点击下一步!"); return false; } return true; }
后台获取 asp.net webform情况下的
<td> <input type="checkbox" value=http://www.mamicode.com/‘<%# Eval("ID") %>‘ id="Check_Box" class="C_B" runat="server" /> </td>
/// <summary> /// 下一步按钮 /// </summary> protected void btnnext_Click(object sender, EventArgs e) { List<string> IdArr = new List<string>(); //遍历repeater控件的itemtemplate模版 foreach (RepeaterItem item in rptData.Items) { HtmlInputCheckBox cb = (HtmlInputCheckBox)item.FindControl("Check_Box"); //根据控件id获得控件对象,cdDelete是checkBox控件的id if (cb.Checked == true) { IdArr.Add(cb.Value); } } }
获取CheckBox的值
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。