gpt4 book ai didi

javascript - 使用 jQuery 从复选框列表中获取所选项目

转载 作者:行者123 更新时间:2023-12-03 10:50:45 27 4
gpt4 key购买 nike

如何在jquery中的按钮点击事件中获取checkBoxList的选定项值...

    <asp:CheckBoxList ID="check_list" runat="server">
<asp:ListItem Text ="One" Value="1"></asp:ListItem>
<asp:ListItem Text ="Two" Value="2"></asp:ListItem>
<asp:ListItem Text ="Three" Value="3"></asp:ListItem>
</asp:CheckBoxList>
<input type="button" id="btn_click" value="Click"/>

最佳答案

只需使用属性选择器,例如单击按钮后,您可以循环遍历所有选中的值,例如

  $("#btn_click").click(function(){
$("[id*=check_list] input[type=checkbox]:checked").each(function () {
// add $(this).val() to your array
});
});

关于javascript - 使用 jQuery 从复选框列表中获取所选项目,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28430403/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com