$.post("
http://localhost/test.php
",{ 'action' :'ac','add' : add,'other' : other },
function(data){
if(data=="ok"){
$("#scu").html("成功";
}else{
$("#scu").html('失败!');
return false;
}
});
},1000);
test.php这里add和other获取不到值,求解
if($_POST['action']="ac"){
include("sendmail.php");
}