中国最全IT社区平台 联系我们 | 收藏本站
华晨云阿里云优惠2

HTML参考手册

  • HTML 标签列表(字母排序)
  • HTML 标签列表(功能排序)
  • HTML 全局属性
  • HTML 事件
  • HTML 画布
  • HTML 音频/视频
  • HTML 有效DOCTYPES
  • HTML 颜色名
  • HTML 在线拾色器
  • HTML 颜色混搭
  • HTML 字符集
  • HTML ASCII 参考手册
  • HTML ISO-8859-1 参考手册
  • HTML 符号实体参考手册
  • HTML URL 编码参考手册
  • HTML 语言代码参考手册
  • HTTP 状态消息
  • HTTP 方法:GET 对比 POST
  • Px、Em 换算工具
  • px,pt,em 换算表
  • px、em、rem区别介绍
  • 键盘快捷键
  • HTML标签

  • HTML track kind 属性
  • HTML video autoplay 属性
  • HTML video controls 属性
  • HTML track label 属性
  • HTML video height 属性
  • HTML track src 属性
  • HTML video loop 属性
  • HTML track srclang 属性
  • HTML video muted 属性
  • HTML tr align 属性
  • HTML video poster 属性
  • HTML tr bgcolor 属性
  • HTML video preload 属性
  • HTML tr char 属性
  • HTML video src 属性
  • HTML tr charoff 属性
  • HTML video width 属性
  • HTML tr valign 属性
  • HTML track default 属性
  • HTML tbody valign 属性
  • HTML script src 属性
  • HTML tbody charoff 属性
  • HTML script type 属性
  • HTML tbody char 属性
  • HTML q cite 属性
  • HTML tbody align 属性
  • HTML ol compact 属性
  • HTML style media 属性
  • HTML ol reversed 属性
  • HTML style scoped 属性
  • HTML ol start 属性
  • HTML style type 属性
  • HTML ol type 属性
  • HTML script async 属性
  • HTML script charset 属性
  • HTML script defer 属性
  • HTML embed height 属性
  • HTML button formaction 属性
  • HTML basefont face 属性
  • HTML embed src 属性
  • HTML button formenctype 属性
  • HTML embed type 属性
  • HTML button formmethod 属性
  • HTML basefont size 属性
  • HTML embed width 属性
  • HTML button formnovalidate 属性
  • HTML meta charset 属性
  • HTML dir compact 属性
  • HTML button formtarget 属性
  • HTML meta content 属性
  • HTML del cite 属性
  • HTML meta http-equiv 属性
  • HTML button name 属性
  • HTML del datetime 属性
  • HTML meta name 属性
  • HTML button type 属性
  • HTML button autofocus 属性
  • HTML button value 属性
  • HTML meta scheme 属性
  • HTML button disabled 属性
  • HTML menu label 属性
  • HTML button form 属性
  • HTML menu type 属性
  • HTML basefont color 属性
  • HTML map name 属性
  • HTML fieldset disabled 属性
  • HTML fieldset form 属性
  • HTML fieldset name 属性
  • HTML <noframes> 标签

    阅读 (1889)

    HTML <noframes> 标签HTML5不支持该标签


    实例

    显示三个frame框架,如果不支持frame输出 <noframes> 标签的文本:

    <html>

    <frameset cols="25%,50%,25%">
      <frame src="frame_a.htm">
      <frame src="frame_b.htm">
      <frame src="frame_c.htm">
      <noframes>抱歉,您的浏览器不支持 frame 属性!</noframes>
    </frameset>

    </html>

    尝试一下 »

    浏览器支持

    Internet ExplorerFirefoxOperaGoogle ChromeSafari

    目前大多数浏览器支持 <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> 支持如下标准属性:

    属性 描述
    class classname 规定元素的类名
    dir rtl
    ltr
    规定元素中内容的文本方向
    id id 规定元素的唯一 id
    lang language_code 规定元素中内容的语言代码
    style style_definition 规定元素的行内样式
    title text 规定元素的额外信息
    xml:lang language_code 规定 XHTML 文档中元素内容的语言代码

    如需完整的描述,请访问标准属性


    事件属性

    在 HTML 4.01 中,<noframes> 标签支持如下事件属性:

    属性 描述
    onclick script 当鼠标被单击时执行脚本
    ondblclick script 当鼠标被双击时执行脚本
    onmousedown script 当鼠标按钮被按下时执行脚本
    onmousemove script 当鼠标指针移动时执行脚本
    onmouseout script 当鼠标指针移出某元素时执行脚本
    onmouseover script 当鼠标指针悬停于某元素之上时执行脚本
    onmouseup script 当鼠标按钮被松开时执行脚本
    onkeydown script 当键盘被按下时执行脚本
    onkeypress script 当键盘被按下后又松开时执行脚本
    onkeyup script 当键盘被松开时执行脚本

    如需完整的描述,请访问事件属性

    关闭
    程序员人生