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


HTML open属性用法及代码示例


HTML中的open属性用于指示是否在页面加载时显示详细信息。这是一个布尔属性。如果默认情况下不存在,则不会显示详细信息。

注意:此属性仅由<details>元素使用。

用法:

<details open> content... </details>

例:

<!-- HTML program to illustrate open Attribute -->
  
<!DOCTYPE html> 
<html> 
    <head> 
        <title>HTML open Attribute</title> 
    </head> 
    <body> 
        <h2 style = "color:green; text-align:center;"> 
            HTML open Attribute 
        </h2> 
          
        <!-- Below details tag has "open" attribute -->
        <details open> 
            <summary>Geeks classes</summary> 
              
            <p> 
                An extensive classroom programme to build  
                and enhance Data Structures and Algorithm  
                concepts. 
            </p> 
        </details> 
    </body> 
</html>                    

输出:
open

支持的浏览器:下面列出了open属性支持的浏览器:

  • 苹果Safari 6.0
  • 谷歌浏览器12.0
  • Firefox不支持
  • Opera 15.0
  • Internet Explorer不支持

相关用法


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