源码网商城,靠谱的源码在线交易网站 我的订单 购物车 帮助

源码网商城

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

  • 时间:2022-07-02 19:52 编辑: 来源: 阅读:
  • 扫一扫,手机访问
摘要:ASP.NET jQuery 实例5 (显示CheckBoxList成员选中的内容)
界面代码:
[u]复制代码[/u] 代码如下:
<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>
显示效果: [img]http://files.jb51.net/upload/201201/20120113223156769.png[/img] 实现选中语言并显示内容脚本代码:
[u]复制代码[/u] 代码如下:
<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>
选中语言后界面: [img]http://files.jb51.net/upload/201201/20120113223156582.png[/img]
  • 全部评论(0)
联系客服
客服电话:
400-000-3129
微信版

扫一扫进微信版
返回顶部