我有一个带有 Ajax 登录表单的 Bootstrap 模式。显示错误,一切正常,直到login.php的结果为 header('Location: index.php');
我处理这样的结果:
var hr = new XMLHttpRequest();
// Set content type header information for sending url encoded variables in the request
hr.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
// Access the onreadystatechange event for the XMLHttpRequest object
hr.onreadystatechange = function() {
if(hr.readyState == 4 && hr.status == 200) {
var return_data = hr.responseText;
document.getElementById("status").innerHTML = return_data;
}
}
问题是当登录成功并且我得到header('Location: index.php');
响应index.php在div.status
.
有没有一种简单的方法可以将 PHP 标头转换为 javascript 中的重定向?