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


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


DOM removeAttributeNode()方法用於從當前元素中刪除指定的屬性。它與removeAttribute()方法類似,但是區別在於removeAttribute方法用於刪除具有指定名稱的屬性,而另一方麵,removeAttributeNode刪除指定的屬性對象。

用法:

element.removeAttributeNode(name)

其中name是要刪除的屬性節點。這是必填字段。


返回值:它返回要刪除的屬性節點。

例:

<!DOCTYPE html> 
<html> 
  
<head> 
    <title>HTML DOM removeAttributeNode Method</title> 
    <style> 
        .gfg { 
            color:green; 
        } 
    </style> 
</head> 
  
<body style="text-align:center;"> 
    <h1 style="color:green;"> 
            GeeksforGeeks 
        </h1> 
  
    <h2> 
            DOM removeAttributeNode Method 
        </h2> 
  
    <p id="p" class="gfg"> 
      A computer science portal for geeks. 
    </p> 
  
    <button onclick="Geeks()">Click Here!</button> 
  
    <script> 
        function Geeks() { 
            var d = document.getElementById("p"); 
            var color = d.getAttributeNode("class"); 
            
            // Removing attribute node. 
            d.removeAttributeNode(color); 
        } 
    </script> 
</body> 
  
</html>

輸出:

在單擊按鈕之前:
removeAttributeNode

單擊按鈕後:
removeAttributeNode

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

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


相關用法


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