其中modifyMenu!showTreeMenu是转向到tree.jsp页面
现在项目中,前台使用struts2,当提交右边页面数据时,当时设想:然后再次跳转到主界面,相当于重新读取数据,但是加载的主界面竟然是显示在右边区域,这样就成了两个LeftFrame。即使更改Struts2中的resultType的重定向也不可以。
最后,竟然一个简单的JS解决问题。
(本文来源于图老师网站,更多请访问http://m.tulaoshi.com/bianchengyuyan/)在提交右边页面RightFrame,使用JS更新左边LeftFrame。如下:
在rightFrame中的body的onload的事件:
代码如下:
function init(){
//leftTree是左边Frame的id
//重新加载这个页面
window.parent.frames[ "leftTree"].location.reload();
}
window.parent.frames[ "leftTree"].location.reload()
当时你在某一个思路上山穷水尽的时候,可以尝试换种思路,也是会柳暗花明.
需求如下:若刷新右边RightFrame页面,只刷新部分左边LeftFrame。
提到局部部分刷新,肯定想到是Ajax局部刷新。
那我们用纯js的Ajax基础实现:
代码如下:
function createXmlHttpRequest(){
if(window.XMLHttpRequest){
return new XMLHttpRequest();
}else if(window.ActiveXObject){
return new ActiveXObject("Microsoft.XMLHTTP");
}
}
function init(){
//则进行局部刷新
var xmlHttpReq=createXmlHttpRequest();
//获得出发的url的,比如struts2的action或者servlet或jsp页面
var url="success.jsp";
xmlHttpReq.open("GET",url,true);
//因为你在作一个异步调用,
//所以你需要注册一个XMLHttpRequest对象将调用的回调事件处理器
xmlHttpReq.onreadystatechange=function(){
if(xmlHttpReq.readyState==4){
if(xmlHttpReq.status==200){
//使用parent获得左边页面中的某一个p,然后更改展示的外观
window.parent.frames["leftTree"].document.getElementById(pId).innerHTML="测试";
}else{
alert(xmlHttpReq.status+xmlHttpReq.responseText);
}
}
};
xmlHttpReq.send(null);
}
window.parent.frames["leftTree"].document.getElementById(pId).innerHTML=xmlHttpReq.responseText
后台action中的写法如下:
代码如下:
HttpServletResponse response=ServletActionContext.getResponse();
response.setContentType("text/html;charset=utf-8");
out=response.getWriter();
out.print("从后台传入的数据");
两种刷新方式,一种整体刷新;一种局部刷新;