使用jquery获取asp.net复选框列表的文本

发布于 2024-09-16 07:23:56 字数 356 浏览 3 评论 0原文

您好,

如果我有 asp.net checkboxlist 控件:

<asp:CheckBoxList id="list1" runat="server">
    <asp:ListItem>One</asp:ListItem>
    <asp:ListItem>Two</asp:ListItem>
    <asp:ListItem>Three</asp:ListItem>
</asp:CheckBoxList>

如何在检查时使用 jquery 或通过传递它的索引来获取第二个项目(二)且索引为 1 的文本?

Greeting,

if I have asp.net checkboxlist control :

<asp:CheckBoxList id="list1" runat="server">
    <asp:ListItem>One</asp:ListItem>
    <asp:ListItem>Two</asp:ListItem>
    <asp:ListItem>Three</asp:ListItem>
</asp:CheckBoxList>

how to get the text for second item which is (Two) and has index 1 using jquery when it is check or by passing the index of it?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

執念 2024-09-23 07:23:57

复选框项目按以下顺序指定 ID:

  • list1_0 => “一”
  • list1_1 => “二”
  • list1_2 => “三”

在 ID 前添加它们所在的任何 标记的 ID。

然后您可以轻松地从 jQuery 引用它们:

if($('#list1_1').attr('checked')) {
  // the second item is ticked, do something
}

如果您不确定为每个复选框提供 ID,然后在页面上执行“查看源代码”以进行检查。

您还可以编写一个简单的函数来执行此操作:

function isListItemChecked(listIndex, listID) {
  return ( $('#'+listID+'_'+listIndex).attr('checked')==true );
}

The checkbox items are given IDs in the following order:

  • list1_0 => "One"
  • list1_1 => "Two"
  • list1_2 => "Three"

Prefix the ID with the IDs of any <asp:Content ...> tags that they are sitting in.

You can then reference them from jQuery easily:

if($('#list1_1').attr('checked')) {
  // the second item is ticked, do something
}

If you are unsure of the ID given to each checkbox, then do a View Source on the page to check.

You could also write a simple function to do this:

function isListItemChecked(listIndex, listID) {
  return ( $('#'+listID+'_'+listIndex).attr('checked')==true );
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文