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()方法支持的瀏覽器:
- 穀歌瀏覽器
- IE瀏覽器
- 火狐瀏覽器
- Opera
- 蘋果瀏覽器
相關用法
- HTML DOM contains()用法及代碼示例
- HTML DOM getBoundingClientRect()用法及代碼示例
- HTML DOM requestFullscreen()用法及代碼示例
- HTML DOM execCommand()用法及代碼示例
- HTML DOM removeNamedItem()用法及代碼示例
- HTML DOM removeEventListener()用法及代碼示例
- HTML DOM createDocumentFragment()用法及代碼示例
- HTML DOM item()用法及代碼示例
- HTML DOM replaceChild()用法及代碼示例
- HTML DOM renameNode()用法及代碼示例
- HTML DOM hasAttributes()用法及代碼示例
- HTML DOM removeChild()用法及代碼示例
- HTML DOM focus()用法及代碼示例
- HTML DOM hasChildNodes()用法及代碼示例
- HTML DOM compareDocumentPosition()用法及代碼示例
注:本文由純淨天空篩選整理自Vishal Chaudhary 2大神的英文原創作品 HTML | DOM setAttributeNode() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。