Spring3MVC提交彈出視窗表單後,自動返回父視窗的列表頁面

hellostory發表於2012-02-16

方法:

@RequestMapping(value = "/save")
	public String save(HttpServletResponse response){
                // 跳出框架彈視窗iFrame,直接返回列表頁面
		PrintWriter out = response.getWriter();
		out.print("<script>window.parent.location.href='list';</script>");
		out.flush();
}


其它問題:

        問題:在彈出視窗中,通過單擊連結請求資料,並在父視窗中顯示結果資料?

        解決:在彈出視窗連結屬性中使用引數”target“即可解決!

<a href="equ/list" class="button" target="_parent" >返回列表</a>



相關文章