var my=document.getElementById("txt"); function color(){ my.style.color="red"; } function re(){ var a=confirm("是否要取消设置?"); if(a==true){ my.removeAttribute('style'); } else{ alert("no") } }
object.removeAttribute('style');