帮我看看我的代码错在哪里?为什么只实现了change color?
<script type="text/javascript">
var txt=document.getElementById("txt");
function chcolor(){
txt.style.color="red";
txt.style.backgroundColor="green";
}//定义"改变颜色"的函数
function chsize(){
txt.style.width="100px";
txt.style.height="100px";
}//定义"改变宽高"的函数
function hide(){
txt.style.display="none";
}//定义"隐藏内容"的函数
function show(){
txt.style.display="block";
}//定义"显示内容"的函数
function cancel(){
var message=confirm("是否取消设置?");
if(message==true){
getElementById("txt").className=#txt;
}
}//定义"取消设置"的函数
</script>