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


HTML DOM head用法及代码示例


如果文档中有多个头部,则HTML中的head属性用于返回头部的第一个匹配项。它返回head对象的引用,该引用代表<head>元素

用法:

document.head

下面的程序演示了HTML中的document.head属性:


例:

<!DOCTYPE html> 
<html> 
    <head id="Article Head">  
        <title> 
            DOM document.head() Property in HTML 
        </title>  
        <style>  
            h1 {  
                color:green;  
            }  
            h2 { 
                font-family:Impact; 
            } 
            body {  
                text-align:center;  
            }  
        </style>  
    </head> 
    <body> 
        <h1>GeeksforGeeks</h1>  
        <h2>DOM document.head Property</h2>  
        <p> 
         For displaying the Head of the document,  
         double click the "View Head" button:
        </p> 
        <button ondblclick="myHead()"> 
         View Head 
        </button> 
        <p id="head"></p> 
        <script> 
            function myHead() { 
                var gfg = document.head.id; 
                document.getElementById("head").innerHTML = gfg; 
            } 
        </script> 
    </body> 
</html>                    

输出:

支持的浏览器:DOM head属性支持的浏览器如下:

  • 谷歌浏览器4.0
  • 苹果Safari 5.0
  • Firefox 4.0
  • Opera 11.0
  • Internet Explorer 9.0


相关用法


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