$(document).ready(function() {
$("#postform").live("submit",function(){
var datastring=$(this).serialize();
var postid=$(this).("post_id").serialize();
$.ajax({
type: "POST",
url: "post_edit_save.php",
data: datastring,
cache : false,
success: function(html){
window.location.href='post_info.php?post_id='+postid;
}
});
return false;
});
});
在编辑数据(如编辑论坛中的帖子)后,我将此代码与 ajax 一起使用从页面 A 重定向到页面 B。但是当页面 B 完成加载时,页面 B 在我编辑之前会出现旧数据(旧帖子),我必须刷新一次以使新数据出现。
如何在从页面 A 重定向后立即使页面 B 出现新数据而不刷新。