0

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

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

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

我也试过

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

但这也行不通。

4

1 回答 1

2

而不是这样做

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

做这个使用

var url = '<%=request.getContextPath()%>/your_jsp';
window.location.replace(url);
于 2012-07-06T12:33:28.843 回答