Javascript:在 ASP.NET 中使用中继器检查函数
我目前正在开发一个项目,需要将电子邮件转发给转发器内的每个选定客户。我正在使用一个复选框,将电子邮件地址分配为 asp 转发器内的值。
<ItemTemplate>
<div class="odd">
<asp:label ID="lblT" runat="server" style="visibility:collapse; margin-left:9999px;" Text='<%# Eval("exposantID") %>'></asp:label>
<input runat="server" type="checkbox" class="chkExpo" id="chkExpo" value='<%# Eval("exposantMail") %>' />
现在我使用 jQuery :checked 语句来获取转发器内的每个选中的复选框。
var n;
function countChecked() {
n = $("input:checked").length;
}
$(":checkbox").click(countChecked);
countChecked();
$("input").click(function () {
for (var i = 0; i < n; i++) {
alert($("input:checked").val());
}
});
问题是我只能获取第一个检查的值...我尝试使用索引值,但这并没有解决问题。有谁知道如何获取使用此方法检查的每个复选框的值?
谢谢,
阿努德
I am currently working on a project that needs to forward an email to every selected customer inside a repeater. I am working with a checkbox that I assign the email-address as value inside an asp repeater.
<ItemTemplate>
<div class="odd">
<asp:label ID="lblT" runat="server" style="visibility:collapse; margin-left:9999px;" Text='<%# Eval("exposantID") %>'></asp:label>
<input runat="server" type="checkbox" class="chkExpo" id="chkExpo" value='<%# Eval("exposantMail") %>' />
Now I'm using jQuery :checked statement to get every checked checkbox inside the repeater.
var n;
function countChecked() {
n = $("input:checked").length;
}
$(":checkbox").click(countChecked);
countChecked();
$("input").click(function () {
for (var i = 0; i < n; i++) {
alert($("input:checked").val());
}
});
The problem is I can only get the first checked value...I tried working with an index value but that didn't solve the problem. Does anyone have an idea how to get the value for each checkbox that is checked using this method?
Thanks,
Arnoud
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)