HTML <noframes> 标签 详解
HTML基础 2022-06-02 09:41:53小码哥的IT人生shichen
HTML <noframes> 标签
HTML5 中不支持
<noframes> 标签在 HTML 4 中用作不支持框架的浏览器的后备标签。
实例
<frameset cols = "25%, 25%,*">
<noframes>
<body>Your browser does not handle frames!</body>
</noframes>
<frame src ="venus.htm" />
<frame src ="sun.htm" />
<frame src ="mercur.htm" />
</frameset>
完整实例【亲自试一试】:
<html>
<frameset cols="25%,50%,25%">
<frame src="/demo/example/html/frame_a.html">
<frame src="/demo/example/html/frame_b.html">
<frame src="/demo/example/html/frame_c.html">
<noframes>
<body>您的浏览器无法处理框架!</body>
</noframes>
</frameset>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
浏览器支持
IE | Firefox | Chrome | Safari | Opera |
---|---|---|---|---|
所有浏览器都支持 <noframes> 标签。
定义和用法
noframes 元素可为那些不支持框架的浏览器显示文本。noframes 元素位于 frameset 元素内部。
HTML 与 XHTML 之间的差异
NONE
提示和注释:
注释:如果浏览器有能力处理框架,就不会显示出 frameset 元素中的文本。
重要事项:如果您希望 frameset 添加 <noframes> 标签,就必须把其中的文本包装在 <body></body> 标签中!
注释:如果您希望验证包含框架的页面,请确保 DTD 被设置为 "Frameset DTD"。
注释:在XHTML 1.0 Strict DTD 中,<noframes> 标签是不被允许的。
TIY 实例
完整实例【如何使用 <noframes> 标签】:
<html>
<frameset cols="25%,50%,25%">
<frame src="/demo/example/html/frame_a.html">
<frame src="/demo/example/html/frame_b.html">
<frame src="/demo/example/html/frame_c.html">
<noframes>
<body>您的浏览器无法处理框架!</body>
</noframes>
</frameset>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
本例演示:如何使用 <noframes> 标签。