在javascript中排序复选框值

时间:2012-08-02 04:18:09

标签: php javascript jquery forms

我需要在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";

0 个答案:

没有答案