好的,所以我使用 ModalBox 在我的网站上创建一个电子邮件表单..但是,我需要模态框来发送电子邮件不是给我,而是发送给添加汽车的用户(它是一个汽车销售网站),所以我需要将 $email 变量传递给 sendmessage.php。
这是我到目前为止所做的:
$(document).ready(function() {
$(".modalbox").fancybox();
$("#contact").submit(function() { return false; });
$("#send").on("click", function(){
setTimeout("$.fancybox.close()", 10);
var emailval = $("#email").val();
var msgval = $("#msg").val();
var msglen = msgval.length;
var mailvalid = validateEmail(emailval);
if(mailvalid == false) {
$("#email").addClass("error");
}
else if(mailvalid == true){
$("#email").removeClass("error");
}
if(msglen < 4) {
$("#msg").addClass("error");
}
else if(msglen >= 4){
$("#msg").removeClass("error");
}
if(mailvalid == true && msglen >= 4) {
// if both validate we attempt to send the e-mail
// first we hide the submit btn so the user doesnt click twice
$("#send").replaceWith("<em>Se trimite...</em>");
$.ajax({
type: 'POST',
url: 'http://automoka.ro/sendmessage.php',
data: $("#contact").serialize(),
success: function(data) {
if(data == "true") {
$("#contact").fadeOut("fast", function(){
$(this).before("<p><strong>Mesajul a fost trimis!</strong></p>");
setTimeout("$.fancybox.close()", 10);
$_POST['contact'] = $email;
});
}
}
});
}
});
});
并在 php 发件人中:
$email = $_POST['contact'];
$sendto = $email;
$usermail = $_POST['email'];
$content = nl2br($_POST['msg']);
if(@mail($sendto, $subject, $msg, $headers)) {
echo "true";
} else {
echo "false";
}
我究竟做错了什么?请帮助....提前致谢!
编辑:没关系..想通了!...我添加了另一个隐藏到模态框的文本区域...并使用 post 将其发送到 sendmessage.php。