2018.3.29 网页中嵌套网页的两种方法

第一种:

<!DOCTYPE html>
<html>
    <head>
        <meta charset="UTF-8">
        <title></title>
    </head>
    <body>
        <marquee direction="right" style="color: royalblue;">随便看看</marquee>
        <iframe src="gerendiaocha.html" width="500" height="900" frameborder="0" scrolling="no"></iframe>
        <iframe src="index.html" width="800" height="900" frameborder="0" scrolling="yes"></iframe>
    </body>
</html>

第二种:不能有<body></body>标签

<!DOCTYPE html>
<html>
    <head>
        <meta charset="UTF-8">
        <title></title>
    </head>
    <!--网页中嵌套网页-->
    <frameset rows="300,*">
        <frame src="index.html"></iframe>
        <frame src="gerendiaocha.html"></iframe>
    </frameset>
</html>

原文地址:https://www.cnblogs.com/0328dongbin/p/8672458.html