html noframes标签是什么意思?怎么使用?
html noframes标签包含对于那些不支持 FRAMESET 元素的浏览器使用的 HTML。noframes 元素可为那些不支持框架的浏览器显示文本。noframes 元素位于 frameset 元素内部。
html noframes标签具体使用方法实例如下:
<html>
<frameset cols="25%,50%,25%">
<frame src="http://169it.com/example/html/frame_a.html">
<frame src="/Other//example/html/frame_b.html">
<frame src="/Other//example/html/frame_c.html">
<noframes>
<body>您的浏览器无法处理框架!</body>
</noframes>
</frameset>
</html>
实例
显示三个frame框架,如果不支持frame输出 <noframes> 标签的文本:
<html>
<frameset cols="25%,50%,25%">
<frame src="/it-htmltag/frame_a._a class="inlink" href="/tag/htm/index.html" target="_blank">htm">
<frame src="/it-htmltag/frame_b.htm">
<frame src="/it-htmltag/frame_c.htm">
<noframes>Sorry, your browser does not handle frames!</noframes>
</frameset>
</html>
浏览器支持
目前大多数浏览器支持 <noframes> 标签。
标签定义及使用说明
HTML5 不支持 <noframes> 标签。
<noframes> 元素可为那些不支持框架的浏览器显示文本。noframes 元素位于 frameset 元素内部。
<noframes> 元素插入在 <frameset> 元素中使用。
注意: 如果您希望验证包含框架的页面,请确保 DTD 被设置为 "Frameset DTD"。
HTML 4.01 与 HTML5 的差异
HTML5不支持 <noframes> 标签,HTML 4.01 支持该标签。
HTML 与 XHTML 的差异
重要: 在 XHTML Frameset DTD,位于 <noframes> 元素中的文本信息必须有关闭标签。
在 HTML 4.01 中,<noframes> 支持如下标准属性:
如需完整的描述,请访问标准属性。
在 HTML 4.01 中,<noframes> 标签支持如下事件属性:
如需完整的描述,请访问事件属性。