使用ajax
,我正在通过php
加载表值。我的问题是,当发生错误并发送到php
函数mail_error()
进行处理时,error.html
页面会加载到工作文档中,而不是重定向。
function mail_error($ex) {
$from = "error@mysite.co";
$to = "error@mysite.co";
$subject = "ERROR!";
$message = $ex."\n\nwith user: ".$_SESSION['memberid'];
$headers = "From:" . $from;
mail($to,$subject,$message,$headers);
header("Location: error.html");
}
有没有办法更改最后一行,以便重定向到error.html
?
以下是调用JQuery
的{{1}}:
php