HTML DOM removeAttributeNode() 方法从 HTML 文档中的指定元素中移除其参数中指定的属性,并将移除的属性作为 Attr 节点对象返回。
用法
以下是语法 -
node.removeAttributeNode(attributeNode);
示例
让我们看一个 removeAttributeNode() 方法的例子 -
<!DOCTYPE html>
<html>
<head>
<style>
html{
height:100%;
}
body{
text-align:center;
color:#fff;
background:linear-gradient(62deg, #FBAB7E 0%, #F7CE68 100%) center/cover no-repeat;
height:100%;
}
.btn{
background:#0197F6;
border:none;
height:2rem;
border-radius:2px;
width:35%;
margin:2rem auto;
display:block;
color:#fff;
outline:none;
cursor:pointer;
}
</style>
</head>
<body>
<h1>DOM removeAttributeNode() method Demo</h1>
<p style="color:#db133a;font-size:1.2rem;">Hi! I'm a para element in HTML with some random text</p>
<button onclick="remove()" class="btn">Remove Attribute</button>
<script>
function remove() {
var p=document.querySelector("p");
var pAtt=p.getAttributeNode("style");
p.removeAttributeNode(pAtt);
}
</script>
</body>
</html>
输出
这将产生以下输出 -
点击 ”Remove Attribute” 按钮从 <p> 元素中删除样式属性。
相关用法
- HTML DOM removeAttribute()用法及代码示例
- HTML DOM removeNamedItem()用法及代码示例
- HTML DOM removeChild()用法及代码示例
- HTML DOM removeEventListener()用法及代码示例
- HTML DOM revokeObjectURL()用法及代码示例
- HTML DOM replaceChild()用法及代码示例
- HTML DOM Style overflowY属性用法及代码示例
- HTML DOM Document hidden属性用法及代码示例
- HTML DOM IFrame用法及代码示例
- HTML DOM Textarea cols属性用法及代码示例
- HTML DOM Style pageBreakAfter属性用法及代码示例
- HTML DOM Base href属性用法及代码示例
- HTML DOM Pre用法及代码示例
- HTML DOM Input Month用法及代码示例
- HTML DOM Video canPlayType()用法及代码示例
- HTML DOM Range deleteContents()用法及代码示例
- HTML DOM console.dirxml()用法及代码示例
- HTML DOM Style transition属性用法及代码示例
- HTML DOM Video volume属性用法及代码示例
- HTML DOM Input Range用法及代码示例
注:本文由纯净天空筛选整理自AmitDiwan大神的英文原创作品 HTML DOM removeAttributeNode() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。