我需要在页面的一半(左侧)处创建 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>