Spring3MVC提交弹出窗口表单后,自动返回父窗口的列表页面

方法:

@RequestMapping(value = "/save")
	public String save(HttpServletResponse response){
                // 跳出框架弹窗口iFrame,直接返回列表页面
		PrintWriter out = response.getWriter();
		out.print("");
		out.flush();
}


其它问题:

        问题:在弹出窗口中,通过单击链接请求数据,并在父窗口中显示结果数据?

        解决:在弹出窗口链接属性中使用参数”target“即可解决!

返回列表



你可能感兴趣的:(J2EE)