我需要在javascript中使用逗号分隔已选中复选框的所有值,因此我可以将其发送到发送php脚本的表单。
javascript:
var services = [];
$('#field-services:checked').each(function() {
services.push($(this).val());
});
$.post(rootUrl+'/wp-admin/admin-ajax.php', { action:"two2_send_contact_form", services:services }
我在div中有一个复选框,其ID为field-services
发送电子邮件的PHP
$services = $_POST["services"];
$subject = "BLAH BLAH";
$body = "Services: $services, \n\n$message";