<noframes>标记是那些不支持框架的浏览器的备份。该标签可以包含可以放置在<body>标签中的所有元素。它用于创建与您要向用户显示消息的任何网站的非框架版本的链接。 HTML5不支持此<noframes>标记。
用法:
<noframes> Statement for the user </noframes>
注意: <无框>标签放置在<frameset>标签内部。
以下示例说明了<noframes>标签:
例:
<html>
<head>
<title>noframes tag</title>
<style>
frame {
text-align:center;
}
</style>
</head>
<!-- frameset attribute starts here -->
<frameset cols="30%, 40%, 30%">
<frame src="frame_a.htm" />
<frame src="frame_b.htm" />
<frame src="frame_c.htm" />
<noframes>
Sorry, your browser does not handle frames!
</noframes>
</frameset>
<!-- frameset attribute ends here -->
</html>
输出:
- 如果支持浏览器:
- 如果不支持浏览器:
支持的浏览器:HTML <noframes>标记支持的浏览器如下:
- 谷歌浏览器
- IE浏览器
- Firefox
- Safari
- Opera
相关用法
- HTML <html>用法及代码示例
- HTML <section>用法及代码示例
- HTML Style用法及代码示例
- HTML <marquee>用法及代码示例
- HTML <picture>用法及代码示例
- HTML <font>用法及代码示例
- HTML <hgroup>用法及代码示例
- HTML <q>用法及代码示例
- HTML Object用法及代码示例
- HTML Phrase用法及代码示例
- HTML <hr>用法及代码示例
- HTML <nav>用法及代码示例
- HTML <Meta>用法及代码示例
- HTML <optgroup>用法及代码示例
- HTML <frame>用法及代码示例
- HTML <main>用法及代码示例
- HTML <dfn>用法及代码示例
注:本文由纯净天空筛选整理自skyridetim大神的英文原创作品 HTML | <noframes> Tag。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。