作家
登录

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

作者: 来源:www.28hudong.com 2013-03-30 00:35:37 阅读 我要评论

界面代码: 复制代码 代码如下: <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> 选中语言后界面:

  推荐阅读

  深入理解JavaScript系列(1) 编写高质量JavaScript代码的基本要点

具体一点就是编写高质量JavaScript的一些要素,例如避免全局变量,使用单变量声明,在循环中预缓存length(长度),遵循代码阅读,以及更多。 此摘要也包括一些与代码不太相关的习惯,但对整体代码的创建息息相关,包>>>详细阅读


本文标题:ASP.NET jQuery 实例5 (显示CheckBoxList成员选中的内容)

地址:http://www.17bianji.com/kaifa2/JS/23740.html

关键词: 探索发现

乐购科技部分新闻及文章转载自互联网,供读者交流和学习,若有涉及作者版权等问题请及时与我们联系,以便更正、删除或按规定办理。感谢所有提供资讯的网站,欢迎各类媒体与乐购科技进行文章共享合作。

网友点评
自媒体专栏

评论

热度

精彩导读
栏目ID=71的表不存在(操作类型=0)