这样会不会简洁点
function fn(str){
var txt = document.getElementById("txt");
if(str=="1"){
txt.style.color = "red";
}else if(str=="2"){
txt.style.width="900px";
txt.style.height="300px";
}else if(str=="3"){
txt.style.display="none";
}else if(str=="4"){
txt.style.display="block";
}else if(str=="5"){
var sel = confirm("是否取消设置?")
if(sel==true){
var txt=document.getElementById("txt");
txt.removeAttribute("style");
}
}
}