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


HTML DOM attributes用法及代碼示例


HTML DOM中的attribute屬性返回NamedNodeMap對象指定的一組節點屬性。 NamedNodeMap對象表示屬性對象的集合,可以通過索引號進行訪問。索引號從0開始。

用法:

node.attributes

返回值:它返回NamedNodeMap對象,該對象是節點的集合。


注意:在Internet Explorer 8和更早版本中,attributes屬性將返回元素的所有可能屬性的集合,該元素可能導致值超出預期。

範例1:

<!DOCTYPE html> 
<html> 
    <head> 
        <title> 
            HTML DOM attributes Property 
        </title> 
    </head> 
      
    <body> 
      
        <!-- Setting up an image -->
        <img id = "GFG" src =  
"https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-logo.png" > 
          
        <br> 
        <button onclick = "myGeeks()"> 
            DOM attributes property 
        </button> 
          
        <p id = "demo"></p> 
          
        <script> 
            function myGeeks() { 
                
            // It returns the number of nodes 
            var x = document.getElementById("GFG").attributes.length;  
              
            // Display the number of nodes 
            document.getElementById("demo").innerHTML = x;  
        } 
        </script> 
    </body> 
</html>                    

輸出:

範例2:

<!DOCTYPE html> 
<html> 
  
<head> 
    <title> 
        HTML DOM attributes Property 
    </title> 
</head> 
  
<body> 
    <h2> 
            HTML DOM attributes Property 
        </h2> 
  
    <button id="GFG" onclick="myGeeks()"> 
        Click Here! 
    </button> 
  
    <br> 
    <br> 
  
    <span> 
            Button element attributes:  
        </span> 
  
    <span id="sudo"></span> 
  
    <script> 
        function myGeeks() { 
  
            // It returns the number of nodes     
            var gfg =  
                document.getElementById("GFG").attributes.length; 
  
            // Display the number of nodes 
            document.getElementById("sudo").innerHTML = gfg; 
        } 
    </script> 
</body> 
  
</html>

輸出:

支持的瀏覽器下表列出了DOM屬性支持的瀏覽器:

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


相關用法


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