HTML - <noframes> 标签



HTML <noframes> 标签用于处理不支持 <frame> 标签的浏览器。此标签用于显示备用文本消息。

此标签不再推荐,因为它已弃用且在 HTML5 中不受支持。

语法

<noframes> .. </noframes>

属性

HTML noframes 标签支持 HTML 的 全局 属性。

以下示例将说明 noframes 标签的用法。何时以及如何使用 noframes 标签,以及何时浏览器不支持 frame 标签。

HTML noframes 标签示例

以下示例将说明 noframes 标签的用法。何时以及如何使用 noframes 标签,以及何时浏览器不支持 frames 标签。

如果框架失败则显示备用内容

考虑以下示例,我们将使用文本形式的备用内容放在 <nofarmes> 标签中,如果浏览器不支持 frame 标签。

<!DOCTYPE html>
<html>
<head>
   <title>HTML noframes Tag</title>
</head>
<frameset cols="200, *">
   <frame src=
"https://tutorialspoint.com/cg/images/logo.png" />
   <frame src=
"https://tutorialspoint.com/static/images/hero.png" />
   <noframes>
      <body> 
         Your browser does not support frames.
      </body>
   </noframes>
</frameset>
</html>

如果嵌入失败则显示备用图像

考虑以下示例,我们将使用备用图像放在 <onframes> 标签中,如果浏览器不支持 frame 标签。

<!DOCTYPE html>
<html>

<head>
    <title>HTML noframes Tag</title>
</head>
<frameset cols="200, *">
    <frame src=
"https://tutorialspoint.com/cg/images/logo.png"/>
    <frame src=
"https://tutorialspoint.com/static/images/hero.png"/>
    <noframes>

        <body>
            <img src=
"https://tutorialspoint.com/cg/images/logo.png"/>
            <img src=
"https://tutorialspoint.com/static/images/hero.png"/>
        </body>
    </noframes>
</frameset>

</html>

支持的浏览器

标签 Chrome Edge Firefox Safari Opera
noframes 是 1.0 是 12.0 是 1.0 是 4.0 是 15.0
html_tags_reference.htm
广告