求大神详解 removeAttribute 恢复原始值为什么不会把head里的style也给移除
求大神详解 removeAttribute 恢复原始值为什么不会把head里的style也给移除
function replace(){
var mychar= document.getElementById("txt");
var message=confirm("确认返回默认状态吗?")
if(message==true){
mychar.removeAttribute("style");}
else{};
}