我需要在 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 中有复选框,idfield-services
是发送电子邮件的 php
$services = $_POST["services"];
$subject = "BLAH BLAH";
$body = "Services: $services, \n\n$message";