这个框架集代码有什么问题?

时间:2010-11-15 15:14:13

标签: html frames frameset

我在服务器上使用Webmin。由于某种原因,它决定停止在根页面上显示任何内容,它完全是空白的。但它仍然返回代码,如下所示。框架中的各个页面工作正常但框架集不希望在任何浏览器中出于某种原因显示。

我已将它剥离到此,在本地服务器上运行但它仍然没有显示任何内容:

<!DOCTYPE html public "-//W3C//DTD HTML 3.2 Final//EN">
<html>
<head>
<title>Title</title>
</head>
<body>
<frameset cols="230,*">
    <frame name="left" src="test1.html" scrolling="auto">
    <frame name="right" src="test2.html" noresize>
</frameset>
</body>
</html>

我也尝试删除和更改各种属性,但没有运气。

2 个答案:

答案 0 :(得分:4)

<frameset>元素取代<body>元素。您不能在同一文档中同时使用它们。

你应该写:

<!DOCTYPE html public "-//W3C//DTD HTML 3.2 Final//EN">
<html>
<head>
<title>Title</title>
</head>
<frameset cols="230, *">
    <frame name="left" src="test1.html" scrolling="auto" />
    <frame name="right" src="test2.html" noresize="noresize" />
</frameset>
</html>

答案 1 :(得分:0)

取出<body></body>代码。