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()方法支持的浏览器:
- 谷歌浏览器
- IE浏览器
- 火狐浏览器
- Opera
- 苹果浏览器
相关用法
- HTML DOM contains()用法及代码示例
- HTML DOM execCommand()用法及代码示例
- HTML DOM getBoundingClientRect()用法及代码示例
- HTML DOM requestFullscreen()用法及代码示例
- HTML DOM removeNamedItem()用法及代码示例
- HTML DOM item()用法及代码示例
- HTML DOM createDocumentFragment()用法及代码示例
- HTML DOM removeEventListener()用法及代码示例
- HTML DOM replaceChild()用法及代码示例
- HTML DOM renameNode()用法及代码示例
- HTML DOM hasAttributes()用法及代码示例
- HTML DOM removeChild()用法及代码示例
- HTML DOM focus()用法及代码示例
- HTML DOM hasChildNodes()用法及代码示例
- HTML DOM Storage key()用法及代码示例
注:本文由纯净天空筛选整理自Vishal Chaudhary 2大神的英文原创作品 HTML | DOM removeAttributeNode() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。