为什么一点反应都没有
<script type="text/javascript">
//定义"改变颜色"的函数
function color(){
var col=document.geElementById("txt");
col.style.backgroundColor="blue";
}
//定义"改变宽高"的函数
function high(){
var h=document.geElementById("txt");
h.style.width="500px";
h.style,height="500px";
}
//定义"隐藏内容"的函数
function none(){
var no=document.geElementById("txt");
no.style.display="none";
}
//定义"显示内容"的函数
function block(){
var no=document.geElementById("txt");
no.style.display="block";
}
//定义"取消设置"的函数
function qu(){
txt.removeAttribute("style");
}