JavaScript 参考手册
HTML DOM removeAttribute() 方法
删除头部元素的 style 属性
源代码:
点击运行 »
<h1 style="color:red">Hello World</h1> <p id="demo">点击下面的按钮删除上面的标题的样式属性</p> <button onclick="myFunction()">点我</button> <script> function myFunction() { document.getElementsByTagName("H1")[0].removeAttribute("style"); }; </script>
运行结果:
点击运行 »