🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
### 1. getAttribute -- 设置属性 removeAttribute -- 移除属性 ~~~ <style> .one{ color:red; } </style> </head> <body> <p id="test" class="one">hello world</p> <script> // getAttribute -- 设置属性 // removeAttribute -- 移除属性 var test = document.getElementById("test"); test.onclick = function(){ this.removeAttribute("class"); } </script> </body> ~~~