Jquery 返回上一级并刷新页面

$.ajax({
        url:"",
        type:"POST",
        data:{},
        dataType : "json",
        success : function(data, textStatus, xhr) {
                alert("更新成功");
                window.location.href=document.referrer;
        },
        error : function(data, textStatus, xhr) {
                alert("更新失败");
        }
});

你可能感兴趣的:(JQUERY)