在action里这样写out.print("")就会在页面对话框显示你要显示的信息。想要在弹出框后跳转页面可以再后面加window.location.href='''l
两种方法
一。在jsp中加个隐藏域,放你从action中返回的值,然后在js中可以取得
二。js跟jsp写在同一个页面上,js中可以用<%=%>取得jsp值。
在action中 要传递的值放到request.
String str = "xxxxxx";
request.setAttribute("value",str);
在jsp中 用<%String str = request.getAttribute("value").toString();%>拿到传递过来的值。
用js来显示。alert("<%=str%>");