當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。