我有以下问题:我发布了一个 jQuery ajax 帖子,成功后,我需要将浏览器的位置更改为索引视图。这是javascript:
$.post(CreateReleaseNotificationURL, Notifications_Form.serialize(), function (response) {
if (response.indexOf("Error") == 0) {
$("#NewNotification_CreateStatus").html(response);
}
else {
window.location.assign('@Url.Action("Index")');
//window.location = window.location;
}
})
.fail(function () {
$("#NewNotification_CreateStatus").html("An error has occured.<br /> Please contact the system administrator<br /> if the problem persists.");
});
然而,什么也没有发生!!我错过了什么?
PS:我也尝试使用 location.href,但无济于事。