所以我在主页面上使用ajax将表单数据提交到php脚本,该脚本将所有数据插入到数据库中。完成后虽然我想重定向某个地方。所以这是我的ajax:
$('#form').submit(function() {
if(val.form()) {
var $this = $(this);
$.ajax({
data: $this.serialize(), // get the form data
type: "POST",
url: "scripts/insert.php",
complete: function(response){
var redirect = response.getHeader('Location');
alert(redirect);
}
});
}
return false;
});
在php文件的最后我有:
header("Location: http://www.google.com", true, 401);
exit();
我使用chromephp进行调试,因此在执行控制台时输出:
POST http://www.domain.com/Folder/scripts/insert.php 401 (Authorization Required) jquery.min.js:2
Uncaught TypeError: Object #<Object> has no method 'getHeader' /Folder/:320
那么当我使用ajax时,如何在脚本末尾重定向?感谢
答案 0 :(得分:2)
试试:
<?php
ini_set('display_errors', false);
echo ('Location: http://www.google.com');
?>
它对我有用。
JavaScript的:
$.ajax({
type: 'POST',
url: "http://localhost/test.php",
data: {name: name },
success: function(output){ window.location = output; }
dataType: dataType
});