教程集 www.jiaochengji.com
教程集 >  jQuery  >  jquery 教程  >  正文 ASP.NET jQuery 实例5 (显示CheckBoxList成员选中的内容)

ASP.NET jQuery 实例5 (显示CheckBoxList成员选中的内容)

发布时间:2013-06-06   编辑:jiaochengji.com
这章我们主要看下如何通过jQuery来获取CheckBoxList成员内容
这章我们主要看下如何通过jquery来获取CheckBoxList成员内容 界面代码:
复制代码 代码如下:

<form id="form1" runat="server">
<div align="left">
<fieldset style="width: 400px; height: 150px">
<p>
请选择语言</p>
<asp:CheckBoxList ID="ckbListPro" runat="server">
<asp:ListItem Value="1" Text="C#"></asp:ListItem>
<asp:ListItem Value="2" Text="JAVA"></asp:ListItem>
<asp:ListItem Value="3" Text="C++"></asp:ListItem>
<asp:ListItem Value="4" Text="JavaScript"></asp:ListItem>
</asp:CheckBoxList>
</fieldset>
<br />
<div id="message" style="color:Red;"></div>
</div>
</form>

显示效果:

实现选中语言并显示内容脚本代码:
复制代码 代码如下:

<script src="Scripts/jquery-1.4.1-vsdoc.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function () {
// CheckBoxList在页面呈现时转换为<table id="ckbListPro">
// 成员ListItem转换为<input type="checkbox"><label>
$("#<%=ckbListPro.ClientID %>").click(function () {
var str = "";
// 这里获取到被选中的<input type="checkbox">
$("#<%=ckbListPro.ClientID %> input[type=checkbox]:checked").each(function () {
str = str + $(this).val() + ":" + $(this).next().text() + " "; // 这里的next()表示<label>
});
$("#message").text(str);
});
});
</script>

选中语言后界面:

您可能感兴趣的文章:
ASP.NET jQuery 实例5 (显示CheckBoxList成员选中的内容)
ASP.NET jQuery 实例6 (实现CheckBoxList成员全选或全取消)
ASP.NET jQuery 实例15 通过控件CustomValidator验证CheckBoxList
JQuery中对服务器控件 DropdownList, RadioButtonList, CheckboxList的操作总结
ASP.NET中WebForm组件CheckBoxList编程(1)
ASP.NET中WebForm组件CheckBoxList编程(2)
ASP.NET中WebForm组件CheckBoxList编程(3)
javascript数组操作实例总结
asp.net Web服务器控件教程
asp.net遍历页面中所有TextBox,并赋值为String.Empty的方法

[关闭]
~ ~