我这个为什么所有按钮都没用?
<form>
<!--当点击相应按钮,执行相应操作,为按钮添加相应事件-->
<input type="button" value="改变颜色" onclick="changeColor()">
<input type="button" value="改变宽高" onclick="changewh()">
<input type="button" value="隐藏内容" onclick="none()">
<input type="button" value="显示内容" onclick="block()">
<input type="button" value="取消设置" onclick="return()">
</form>
<script type="text/javascript">
//定义"改变颜色"的函数
var txt=document.getElementById("txt");
var con=document.getElementById("con");
function changeColor(){
txt.style.color="red";
txt.style.backgroundColor="#CCC";
}
//定义"改变宽高"的函数
function changewh(){
txt.style.height="200px";
txt.style.width="300px";
}
//定义"隐藏内容"的函数
function none(){
txt.style.display="none";
con.style.display="none";
}
//定义"显示内容"的函数
function block(){
txt.style.display="block";
con.style.display="block";
}
//定义"取消设置"的函数
function return(){
var a=confirm("是否取消设置?");
if(a==true){
con.style="none";
txt.style="none";
}else{
return;
}
}
</script>
</body>
</html>