$.each(emails, function(index, value)
{
$.post('ajax/send_email.php', { email: value, ... }, function(data)
{
$('#emails_sent').text('Sent ' + (index + 1) + '/' + num_emails);
});
});
在
$(function()
{
$('#cancel').on('click', function(e)
{
hidePopupWindow();
});
});
在$.each
运行时没有任何按钮,例如取消工作——它们不能被选择或按下。