手机
当前位置:查字典教程网 >编程开发 >Javascript教程 >ASP.NET jQuery 实例5 (显示CheckBoxList成员选中的内容)
ASP.NET jQuery 实例5 (显示CheckBoxList成员选中的内容)
摘要:界面代码:复制代码代码如下:请选择语言显示效果:实现选中语言并显示内容脚本代码:复制代码代码如下:$(document).ready(fun...

界面代码:

复制代码 代码如下:

<form id="form1" runat="server">

<div align="left">

<fieldset>

<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"></div>

</div>

</form>

显示效果:

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

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

复制代码 代码如下:

<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成员选中的内容)2

【ASP.NET jQuery 实例5 (显示CheckBoxList成员选中的内容)】相关文章:

判断checkbox选择的个数 多浏览器

jQuery仿gmail实现fixed布局的方法

jQuery实现在列表的首行添加数据

jQuery实现延迟跳转的方法

jQuery实现不断闪烁文字的方法

jQuery实现仿腾讯微博滑出效果报告每日天气的方法

jQuery实现弹出窗口中切换登录与注册表单

jQuery插件实现适用于移动端的地址选择器

Mozilla中显示textarea中选择的文字

javascript中CheckBox全选终极方案

精品推荐
分类导航