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


HTML Details open用法及代码示例


HTML DOM中的Details open属性用于设置或返回隐藏信息对用户是否可见。此属性用于反映HTML open属性。

用法:

  • 它返回Details open属性。
    detailsObject.open
  • 它用于设置Details open属性。
    detailsObject.open = true|false

属性值:它接受下面列出的两个属性值:


  • true:它指定隐藏的信息应该是可见的。
  • false:它指定隐藏的信息不应可见。

返回值:它返回一个布尔值,该值表示隐藏信息是否可见。

范例1:本示例返回Details open属性。

<!DOCTYPE html>  
<html>  
  
<head>  
    <title> 
        DOM details open Property 
    </title> 
      
    <style>  
        h2 {  
            color:green;  
            font-size:35px;  
        }  
        summary {  
            font-size:40px;  
            color:#090;  
            font-weight:bold;  
        }  
    </style>  
</head>  
  
<body>  
    <center>  
        <h2>DOM Details open Property </h2>  
  
        <!-- assigning id to details tag. -->
        <details id="GFG">  
            <summary>GeeksforGeeks</summary>  
            <p>A computer science portal for geeks</p>  
            <div> 
                It is a computer science portal  
                where you can learn programming. 
            </div>  
        </details>  
  
        <br>  
        <button onclick="myGeeks()">Submit</button>  
          
        <script>  
            function myGeeks() {  
                  
                // Accessing details tag.  
                var x = document.getElementById("GFG");  
                  
                // Display hidden information  
                // using open property.  
                x.open = true;  
            }  
        </script>  
    </center>  
</body>  
  
</html>                    

输出:
在单击按钮之前:

单击按钮后:

范例2:本示例设置“详细信息”打开属性。

<!DOCTYPE html>  
<html>  
  
<head>  
    <title>DOM details open Property</title>  
    <style>  
        h2 {  
            color:green;  
            font-size:35px;  
        }  
          
        summary {  
            font-size:40px;  
            color:#090;  
            font-weight:bold;  
        }  
    </style>  
</head>  
  
<body>  
    <center>  
        <h2>DOM Details open Property </h2>  
  
        <!-- assigning id to details tag. -->
        <details id="GFG">  
            <summary>GeeksforGeeks</summary>  
            <p>A computer science portal for geeks</p>  
            <div>It is a computer science portal  
                where you can learn programming.</div>  
        </details>  
  
        <br>  
        <button onclick="myGeeks()">Submit</button>  
          
        <p id="sudo" style="font-size:25px;"></p> 
        <script>  
            function myGeeks() {  
                // Accessing details tag.  
                var x = document.getElementById("GFG");  
                  
                // Display hidden information  
                // using open property.  
            var g = x.open = false; 
                document.getElementById("sudo").innerHTML = g; 
            }  
        </script>  
    </center>  
</body>  
  
</html>             

输出:
在单击按钮之前:

单击按钮后:

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

  • 谷歌浏览器
  • Internet Explorer 10.0以上
  • Firefox
  • Opera
  • Safari


相关用法


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