JavaScript 文件:
$.ajax({
type: "POST",
url: "ajax.php",
data: dataString,
success: function(r)
{
$("#div").html(r);
}
});
我想new.php
在成功条件下将页面重定向到,所以在ajax.php
我使用的文件中,header('Location:new.php');
而不是重定向到页面new.php
,它正在加载new.php
.div
为了将现有页面重定向到全新页面,我需要进行哪些更改?