为什么点取消 也取消样式啊 function cc() { var io=document.getElementById("txt"); y=confirm("你确定恢复!"); if(y=true) { io.removeAttribute('style'); } else { } }
if(y=true)
这里if()条件写错,是判断是否等于true,而不是赋值为true.
=是赋值的意思,==才是等于。
if(y==true)