为什么我写的没有反应
<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 changeSize(){
txt.style.width="300px";
txt.style.height="300px";
}
function ojHide(){
txt.style.display="none";
}
function ojShow(){
txt.style.display="block";
}
function offSet(){
if(confirm("恢复原始值")){
txt.style.width = "600px";
txt.style.height = "400px";
txt.style.color = "#000";
con.style.color = "#000";
}
else{
alert("你取消了")
}
}
//定义"改变宽高"的函数
//定义"隐藏内容"的函数
//定义"显示内容"的函数
//定义"取消设置"的函数
</script>
</body>
</html>