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


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


HTML DOM中的setAttributeNode()方法用於將指定的屬性節點添加到元素。如果指定的屬性已經存在,則此方法將替換它。

用法:

element.setAttributeNode(name)

參數:隻有一個參數是可接受的名稱。名稱是要添加的屬性節點。這是必填字段。


返回值:此方法返回一個表示替換後的屬性節點的屬性對象,否則返回null。

例:

<!DOCTYPE html> 
<html> 
  
<head> 
    <title> 
      HTML DOM setAttributeNode Method 
    </title> 
    <style> 
        .gfg { 
            color:green; 
        } 
    </style> 
</head> 
  
<body style="text-align:center;"> 
    <h1 style="color:green;"> 
       GeeksforGeeks 
    </h1> 
  
    <h2> 
       DOM setAttributeNode Method 
    </h2> 
  
    <p id="p"> 
        A computer science portal for geeks. 
    </p> 
  
    <button onclick="Geeks()"> 
        Click Here! 
    </button> 
  
    <script> 
        function Geeks() { 
            //Get the paragraph to add attribute.  
            var doc = document.getElementById("p"); 
  
            //Creating a class attribute. 
            var attr = document.createAttribute("class"); 
  
            //Setting the value of class attribute. 
            attr.value = "gfg"; 
  
            //Adding class attribute to paragraph.  
            doc.setAttributeNode(attr); 
        } 
    </script> 
</body> 
  
</html>

輸出:

在單擊按鈕之前:
setAttributeNode

單擊按鈕後:
setAttributeNode

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

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


相關用法


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