frameset iframe用来分页

frameset用来分大的框架

iframe用来在frame分框架之后,内嵌分割。

<FRAMESET border=1 frameSpacing=1 borderColor=#47478d rows="100,*"
    cols="*">
    <frame src="head.jsp" name="head" scrolling=no id="head"></frame>
    <frame src="center.jsp" name="center" scrolling=no id="center"></frame>
</FRAMESET>
        <table style="100%;height:100%;border:0px;cellspacing:0;cellpadding:0">
            <tr>
                <td style="30%;valign:top"><iframe src="left.jsp" name="leftFrame"  frameborder="0"
                        id="leftFrame" title="leftFrame" width="100%" height="100%"></iframe></td>
                <td style="70%;valign:top"><iframe src="right.jsp" name="rightFrame"  frameborder="0"
                        id="rightFrame" title="rightFrame" width="100%" height="100%"></iframe></td>
            </tr>
        </table>
原文地址:https://www.cnblogs.com/unixshell/p/3420259.html