2

如果我们使用框架集文档类型,我们可以在该页面内的框架集标记之外使用普通的 html 标记吗?

下面是代码;

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">

    <html:html locale="true">
        <head>
            <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
        </head>

    <frameset cols="*" rows="40,*">
            <frame src="#" />
            <frame src="#"/>
            <noframes>
                <body>
                Please enable frames to view.
                </body>
            </noframes>
        </frameset>

    <a href="#">Is this Normal Anchor Tag allowed for frameset doctype and if yes, is this the correct position ?</a>

    </html:html>
4

1 回答 1

3

不,您不能将任何内容放在框架集之外,这与 doctype 无关。

您只能将内容放在 body 标签内,而框架集页面没有 body 标签(标签内除外noframes)。

于 2011-05-02T11:31:25.750 回答