文件名:contact.jsp
${contactList}
有多个联系人。
$("#toAddress")
。 <c:forEach items="${contactList}" var="contact">
<cong:td>
<input type="checkbox" name="selectContact" id="selectContact" class="emailList" onclick="addEmailinList(${contact.email});"/>
</cong:td>
<cong:td>${contact.accountNo}</cong:td>
<cong:td>${contact.firstName} ${contact.lastName}</cong:td>
<cong:td>${contact.position}</cong:td>
<cong:td>${contact.email}</cong:td>
<cong:td>${contact.phone}</cong:td>
<cong:td>${contact.fax}</cong:td>
</c:forEach>
<cong:td>
<input type="button" value="Submit" class="button-style1" style="width:50px;" onclick="definepls();"/>
</cong:td>
文件名:contact.js
function addEmailinList(ele) {
var mailList = [];
$(".emailList:checked").each(function () {
alert(ele); // here i got email address.
mailList.push(ele);
});
parent.$("#toAddress").val($(".emailList").val());
}
答案 0 :(得分:1)
要将所有已检查的电子邮件填充到$('#toAddress')
,您可以执行以下操作:
onclick="addEmailinList(${contact.email});"
并添加data-email="${contact.email}"
以在所有复选框输入字段中引用email
change
$('input.emailList')
事件侦听器
醇>
查看文件:
<c:forEach items="${contactList}" var="contact">
<cong:td>
<input type="checkbox" name="selectContact" id="selectContact" class="emailList" data-email="${contact.email}">
</cong:td>
<cong:td>${contact.accountNo}</cong:td>
<cong:td>${contact.firstName} ${contact.lastName}</cong:td>
<cong:td>${contact.position}</cong:td>
<cong:td>${contact.email}</cong:td>
<cong:td>${contact.phone}</cong:td>
<cong:td>${contact.fax}</cong:td>
</c:forEach>
<cong:td>
<input type="button" value="Submit" class="button-style1" style="width:50px;" onclick="definepls()" />
</cong:td>
JavaScript文件:
$('input.emailList').on('change', function () {
var $this = $(this),
$toAddress = $('#toAddress'),
email = $this.data('email'),
mailList = ($toAddress.text() !== '') ? $toAddress.text().split(', ') : [];
if ($this.is(':checked')) {
// Add email to the list
mailList.push(email);
} else {
// Remove email from the list
for (var i = mailList.length - 1; i >= 0; i--) {
if (mailList[i] === email) {
mailList.splice(i, 1);
break;
}
}
}
// Populate #toAddress
$toAddress.html(mailList.join(', '));
});