1
<h1 style="color:red">Hello World</h1>
2
<p id="demo">点击下面的按钮删除上面的标题样式属性节点</p>
3
<button onclick="myFunction()">点我</button>
4
<script>
5
function myFunction() {
6
var n = document.getElementsByTagName("H1")[0];
7
var a = n.getAttributeNode("style");
8
n.removeAttributeNode(a);
9
};
10
</script>
11
<p>Internet Explorer不支持removeAttribute方法。</p>