我想知道我们如何设置框架的位置。假设我有两个框架,frame_top 和 frame_bottom,现在我在 frame_top 中有一些逻辑。结果应该显示在bottom_frame中。
_________
| top |
| frame |
-----------
| bottom|
| frmae |
-----------
通常表单中的一个动作指定提交表单后要加载的页面,这里我们可以设置相应结果页面应该到达的框架。
like :
<from action=go_bottom.jsp target="bottom_frame" method=post >
同样,我想使用休闲方式代码: //java script in top frame
function open1(){
document.form2.action="go_bottom.jsp"; //here i want to set the frame location
document.f0rm2.submit();
}
因此 document.form2.action 将提交表单并将结果发送到相应的页面。我怎样才能在这里设置 frame_bottom。?