function c(){ var answer=confirm("是否取消设置?"); if(answer=true){ txt.removeAttribute('style'); // txt.style.color=""; // txt.style.backgroundColor=""; // txt.style.width=""; // txt.style.height=""; // txt.style.display=""; } }
一个是赋值,一个是判断吧
都是可以的,慕课网的编译器有时不太对的,应该换到浏览器试试(我测过了)
你也可以写成if(confirm("是否取消设置?")),这样也是可以的!
=或者==都是可以的,=是赋值,==是相比较。
虽然不怎么懂,但是大致知道,一个=是赋值,两个=才是比较