我正在为我的网站后端开发一个发送/重新发送电子邮件按钮,目前正在尝试解决如何添加我制作的 vars 的 2 个整数。
只要整数不为0,脚本就可以正常工作,有人可以给我一些指示吗?无论变量中的 1 是否为 0,我都需要它来显示总数,在此先感谢
function sendResend() {
var selected = Array();
var selectedSend = $(".no:checked").length;
var selectedResend = $(".yes:checked").length;
var totalSendResend = parseInt(selectedSend) + parseInt(selectedSend);
$('input:checked').each(function () {
selected.push($(this).attr('name'));
});
var answer = confirm('You have selected ' + totalSendResend + ' emails. ' + selectedSend + ' New emails will be sent & ' + selectedResend + ' will be resent. Are you sure you want to continue?');
if (answer) {
alert(selected);
}
}