当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


HTML <noframes>用法及代码示例


<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

相关用法


注:本文由纯净天空筛选整理自skyridetim大神的英文原创作品 HTML | <noframes> Tag。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。