0

我需要在页面的一半(左侧)处创建 html 文档 - 超链接列表(Lab2.6-Giper.html)。右侧有两个框架(上下)。在上框架中我显示列表中的页面,在下框架中我需要显示带有一些页面(Lab2.7-Giper_ris.html)的 iframe。但它没有显示 iframe。有什么问题?

<html>
<head>
    <meta charset="utf-8">
</head>
<frameset cols="50%,*">
    <frameset>
        <frame name="left" src="Lab2.6-Giper.html" target="frame_left_up">
    </frameset>
    <frameset rows="50%,*">
        <frame name="frame_right_up">
        <frameset>
            <iframe name="frame_right_down" src="Lab2.7-Giper_ris.html">Frame</iframe>
        </frameset>
    </frameset>
</frameset>
</html>
4

1 回答 1

1

框架集只能包含框架(和其他框架集)。

如果你想要一个 iframe,那么你必须指定一个加载 HTML 文档的框架。该 HTML 文档可能包含 iframe。

于 2013-02-03T19:55:21.563 回答