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


HTML DOM getAttributeNode()用法及代碼示例


HTML DOM中的getAttributeNode()方法用於將具有指定元素名稱的屬性節點作為屬性對象返回。此函數類似於getAttribute()方法,但唯一的區別是getAttribute()方法返回屬性節點的值,而不返回任何屬性對象。

用法:

element.getAttributeNode( attribute_name )

參數:該方法接受強製的單個參數attribute_name。此參數用於保存屬性名稱。


返回值:此方法返回代表屬性節點的屬性對象。

例:本示例包含兩個標題元素,任務是顯示第二個標題元素的屬性節點的值。

<!DOCTYPE html> 
<html> 
    <head> 
        <title> 
            HTML DOM getAttributeNode() Method 
        </title> 
          
        <!--script to display the value of 
            class attribute -->
        <script> 
            function Geeks() { 
                var element_name = 
                document.getElementsByTagName("H2")[0]; 
                  
                var attribute =  
                element_name.getAttributeNode("class").value; 
                  
                document.getElementById("result").innerHTML 
                        = attribute; 
            } 
        </script> 
    </head> 
      
    <body> 
        <h1 class = "Frst_heading"> 
            GeeksforGeeks 
        </h1> 
          
        <h2 class = "Second_heading"> 
            DOM getAttributeNode() Method 
        </h2> 
      
        <p> 
            Click on the button to display 
            the value of attribute node 
        </p> 
      
        <button onclick = "Geeks()"> 
            Click Here! 
        </button> 
      
        <p id = "result"></p> 
      
    </body> 
</html>                    

輸出:
在單擊按鈕之前:

單擊按鈕後:

支持的瀏覽器:下麵列出了DOM getAttributeNode()方法支持的瀏覽器:

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


相關用法


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