本帖最后由 liangjunjie221 于 2012-02-07 14:10:31 编辑

解决方案 »

  1.   

    <table align="center">
     <tr>
      <td colspan="2"><iframe id="frmTop" src="top.jsp" marginheight="0" 
            marginwidth="0" frameborder="0" scrolling="auto" align="top" width="1000" height="100"></iframe></td>
     </tr>
     <tr>
      <td><iframe id="frmLeft" src="leftlist.action" marginheight="0" 
            marginwidth="0" frameborder="0" scrolling="auto" align="top" width="200" height="1000"></iframe></td>
      <td><iframe id="frmRight" src="right.jsp" marginheight="0" 
            marginwidth="0" frameborder="0" scrolling="auto" align="top" width="800" height="1000"></iframe></td>
     </tr>
    </table>
      

  2.   

    指定iframe的src属性为leftlist.action就可以了
      

  3.   

    <frameset rows="94,*" frameborder="no" border="0">
      <frame src="/top.jsp" name="topFrame" scrolling="NO" noresize>
      <frameset rows="*" cols="185,7,*" framespacing="0" frameborder="NO" border="0" id="wfpt">
    <frame src="/page/menu.do" name="leftFrame" scrolling="no" noresize>
    <frame src="/middle.jsp" name="middleFrame" scrolling="no" noresize>
    <frame src="/rightFrame.do" name="rightFrame" scrolling="auto" >
    </frameset>
    </frameset>类似于这样就可以了,index.jsp 会加载frame 页面。
      

  4.   

    src属性里面可以是一个地址阿
    把你的访问地址填进去就可以了
      

  5.   


    在iframe的标签里  src路径可以写action动作 他会自动去执行该动作并转到你想要去的页面参数你也可以在里面加进去  比如下面的例子
    <div>
           
                  <iframe src="/News/test.action?level=index&id=<s:property value="id"/>"  frameborder="0" name="myframe" width="760" height="1070" scrolling="no"></iframe>
                 </div>