obj.removeAttribute("style");怎么用的
removeAttribute?有什么用处吗,用法是什么
翻译过来就是移除属性,作用是移除元素的属性。
例如,var a = document.getElementById("ID");
a.removeAttribute("color");
作用就是移除该元素的color属性。