fmpq.com
源代码:
点击运行
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Fmpq教程(fmpq.com)</title> </head> <body> <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> </body> </html>
运行结果