简单教程
提交运行
代码编辑器:
<h1 style="color:red">Hello World</h1> <p id="demo">点击下面的按钮删除上面的标题样式属性节点</p> <button onclick="myFunction()">点我</button> <script> function myFunction(){ var n=document.getElementsByTagName("H1")[0]; var a=n.getAttributeNode("style"); n.removeAttributeNode(a); }; </script> <p>Internet Explorer不支持removeAttribute方法</p>
运行结果: