HTML 标签列表

HTML <noframes> 标签

HTML <noframes> 标签用于包含在浏览器不支持 <frame> 内容时显示的替代文本。它只会工作,如果浏览器不支持其他框架,它将被浏览器忽略。

<noframes> 标签应该用在 <frameset> 元素中。

注意:不要使用 <noframes>,因为它已被弃用且当前不受 HTML5 支持。

句法

<noframes>........</noframes>

以下是关于 HTML <noframes> 标签的一些规范

展示堵塞
开始标签/结束标签开始和结束标签
用法带框架

例子

<!DOCTYPE html>    
<html>    
<head>    
    <title>Noframe tag</title>    
</head>    
    <frameset cols="50%,50%">    
    <frame src="https://www.rocschool.com/tutorial/html-tutorial/";>    
    <frame src="https://www.rocschool.com/tutorial/css-tutorial/";>  
    <noframes>Sorry! Your browser does not support frames. </noframes>      
   </frameset>    
</html>

属性:

特定于标签的属性:

<noframes > 标签在 HTML 中不包含任何特定属性。

全局属性:

<noframes> 标签仅支持 HTML 中的全局属性。

事件属性:

支持浏览器

元素ChromeIEFirefoxSafariOpera
<noframes>YesYesYesYesYes


  • 使用社交账号登录,本站支持
全部评论(0)