我们如何设置所需jsp页面的框架位置..?

时间:2013-10-08 11:36:45

标签: javascript jsp jsp-tags

我想知道如何设置frame.suppose的位置我有两个帧,frame_top和frame_bottom,现在我在frame_top中有一些逻辑。结果应显示在bottom_frame中。

              _________
             |    top  |
             |   frame |
             -----------
             |   bottom|
             |   frmae |
             ----------- 

表单中的操作通常会在提交表单后指定要加载的页面,在这里我们可以设置相应结果页面应该到达的框架。

         like :
        <from action=go_bottom.jsp target="bottom_frame" method=post >

同样我想用休闲方式做               code://顶部框架中的java脚本

        function open1(){
         document.form2.action="go_bottom.jsp"; //here i want to set the frame location
         document.f0rm2.submit();
         } 

所以document.form2.action将提交表单并将结果发送到相应的页面。 我如何在这里设置frame_bottom。?

0 个答案:

没有答案