$.ajax({
type : 'post',
url : '/edm/testEmail.php',
data: {tId:tId, sId:sId ,testEmail:testEmail},
dataType : 'json',
success:function(msg){
if(msg.result == 'success'){
alert('发送成功');
}else{
alert(msg.result);
}
}
})
简单记一下,以后有用。
2022-09-25 12:54:14
$.ajax({
type : 'post',
url : '/edm/testEmail.php',
data: {tId:tId, sId:sId ,testEmail:testEmail},
dataType : 'json',
success:function(msg){
if(msg.result == 'success'){
alert('发送成功');
}else{
alert(msg.result);
}
}
})
简单记一下,以后有用。