如何在ajax调用中的php标签内加载另一个页面?

时间:2016-02-21 12:01:01

标签: javascript php jquery ajax

使用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

0 个答案:

没有答案