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


HTML DOM nodeType用法及代碼示例


DOM nodeType屬性用於查找我們要引用的節點的類型。特定節點的類型以數字形式返回。 DOM nodeType屬性是一個隻讀屬性。

返回值:它根據節點的類型返回一個數值。

  • 1:如果node是元素節點。
  • 2:如果節點是屬性節點。
  • 3:如果node是文本節點。
  • 8:如果節點是注釋節點。

用法:


 nodeName.nodeType

示例1:

<!DOCTYPE html> 
<html> 
  
<head> 
    <title> 
      HTML|DOM nodeType Property 
    </title> 
    <style> 
        p, 
        h5 { 
            color:green; 
        } 
    </style> 
</head> 
  
<body style="text-align:center;"> 
    <p id="gfg"> 
      GeeksforGeeks 
    </p> 
    <h5> 
      Welcome to GeeksforGeeks 
    </h5> 
  
    <button onclick="node()"> 
        Click here to know the node type. 
    </button> 
  
    <p id="nodetype"></p> 
  
    <script> 
        function node() { 
            var geek = document.getElementById("gfg").nodeType; 
  
            // innerHTML fetches value of element  
            // valued "nodetype"  
            // and update it with new value of variable 
            // "geek"(nodeType value of geek) 
            document.getElementById("nodetype").innerHTML = geek; 
        } 
    </script> 
</body> 
  
</html>

輸出:

之前:

後:

示例2:

<!DOCTYPE html> 
<html> 
  
<head> 
    <title>HTML|DOM nodeType Property</title> 
    <style> 
        h5 { 
            color:green; 
        } 
    </style> 
</head> 
  
<body style="text-align:center;"> 
    <h3>Welcome to GeeksforGeeks</h3> 
  
    <button onclick="nType()"> 
        Click here to know the node type. 
    </button> 
  
    <p id="nodetype"></p> 
  
    <script> 
        // nType() function is used to fetch our node 
        // and find out its type  
        function nType() { 
            var geek = document.body.nodeType; 
            document.getElementById("nodetype").innerHTML = geek; 
        } 
    </script> 
</body> 
  
</html>

輸出:

之前:

後:

支持的瀏覽器:

  • 穀歌瀏覽器
  • 互聯網瀏覽
  • 火狐瀏覽器
  • Opera
  • 蘋果瀏覽器


相關用法


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