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


HTML DOM doctype用法及代碼示例


DOM doctype屬性用於返回任何HTML文檔的doctype。 DocumentType對象是用於返回對象名稱的name屬性。如果文檔中未聲明doctype,則它將返回Null值。

用法:

 document.doctype

例:


<!DOCTYPE html.5> 
<html> 
    <head> 
        <title>DOM doctype Property</title> 
        <style> 
            h1, h2 { 
                color:green; 
                font-weight:bold; 
                text-align:center; 
            } 
            body { 
                text-align:center; 
            } 
        </style> 
    </head> 
    <body style="text-align:center;"> 
        <h1>GeeksForGeels</h1> 
        <h2>DOM doctype Property</h2> 
        <button onclick="geeks()">Submit</button> 
        <p id="sudo"></p> 
        <script> 
            function geeks() { 
                var gfg = document.doctype.name; 
                document.getElementById("sudo").innerHTML = gfg; 
            } 
        </script> 
    </body> 
</html>                    

輸出:

支持的瀏覽器:DOM doctype屬性支持的瀏覽器如下:

  • 穀歌瀏覽器
  • IE瀏覽器
  • 火狐瀏覽器
  • Opera
  • 蘋果瀏覽器


相關用法


注:本文由純淨天空篩選整理自ManasChhabra2大神的英文原創作品 HTML | DOM doctype Property。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。