var mychar= document.getElementById("con");
mychar.style.color=red;
mychar.style.backgroundColor="#ccc";
mychar.style.width=300px
你的red和300px忘了了加双引号了,还有300px后面要分号,要注意符号哦。
function reset(){
var mychar=confirm("确定要取消以上操作么?")
if(ture)
{
document.getElementById("txt").removeAttribute("style");
}
else return null;
}
这个取消设置的代码哪里错了么?
同上!