请教frame的刷新问题
<frameset name="frame">
<frame src="htmlView/head.html" name="topFrame" >
<frameset rows="*" id="midFrame" name="midFrame" >
<frame name="leftFrame" src="htmlView/left.html"/>
<frame src="jbxx.action" name="mainFrame" >
</frameset>
</frameset>
这个frame的布局 我现在要在leftFrame中写JS刷新mainFrame ,让mainFrame 跳到另一个action中。。我试了各种写法
都只能跳到一个html页面中 不能跳action。请问有人知道怎么调另一个action吗?
------解决方案--------------------parent.frames[2].document.***Form.submit();
是用的struts吗?
直接用js控制这个页面提交就可以了啊
------解决方案--------------------parent.parent.location.href="xx.action";