function setCon() { var message=confirm("你确定取消设置么?") ; if(message==true) { var txt1=document.getElementById("txt"); txt1.style.removeAttribute('style'); }关于这样 为什么点击按钮没有效果呀呀呀?
txt1后面没有style
txt1.removeAttribute("style");就可以了,具体不太清楚
那样是直接搬掉了整个style!
尝试:
txt1.style.color=null; txt1.style.width=null; txt1.style.height=null; txt1.style.display=null;