我需要创建html文档,其中一半页面(左侧) - 超链接列表(Lab2.6-Giper.html
)。在右侧有两个框架(向上和向下)。在向上框架中,我显示了列表中的页面,在向下框架中,我需要显示带有某个页面的iframe(Lab2.7-Giper_ris.html
)。
但它并没有告诉我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>
答案 0 :(得分:1)
框架集只能包含框架(和其他框架集)。
如果您需要iframe,则必须指定加载HTML文档的框架。该HTML文档可能包含iframe。