通过AJAX成功插入数据后重定向到另一个页面

时间:2012-07-06 11:07:16

标签: jsp jquery

成功插入日期后,我想重定向到另一个JSP页面。

$.ajax({
                type: "post",
                url: "register.jsp",
                data: datastring,
                success:function(){            
                                window.location.href = "nextPage.jsp";
                }

但我无法重定向到另一个页面(nextPage.jsp),但是数据插入数据库是成功的。如何重定向到 另一页???

我也试过

success:function(){
$("divid").load("nextPage.jsp") }

但这也行不通。

1 个答案:

答案 0 :(得分:2)

而不是这样做

window.location.href = "nextPage.jsp";

这样做 使用

var url = '<%=request.getContextPath()%>/your_jsp';
window.location.replace(url);