为什么我的没错也没反应
//定义"改变颜色"的函数
var my = document.getElementById("con");
var odj = document.getElementById("txt");
function changeColor(){
odj.style.color="red";
odj.style.backgroundColor="#ccc";
}
//定义"改变宽高"的函数
function changgao(){
odj.style.width="200px";
odj.style.height="300px";
}
//定义"隐藏内容"的函数
function yincang(){
obj.style.display="none";
}
//定义"显示内容"的函数
function xianshi(){
odj.style.display="block";
}
//定义"取消设置"的函数
function quxiao(){
var mychose = confirm();
if(mychose == true){
mydiv.removeAttribute("style");
}
}