使用jquery获取asp.net复选框列表的文本
您好,
如果我有 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
复选框项目按以下顺序指定 ID:
在 ID 前添加它们所在的任何
标记的 ID。然后您可以轻松地从 jQuery 引用它们:
如果您不确定为每个复选框提供 ID,然后在页面上执行“查看源代码”以进行检查。
您还可以编写一个简单的函数来执行此操作:
The checkbox items are given IDs in the following order:
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 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: