个个定义的函数
"改变颜色"obj.style.color="blue";obj.style.backgroundColor="#ccc" ; "改变宽高"obj.style.width="300px";obj.style.height ="300px"; "隐藏内容"obj.style.display="none"; "显示内容"obj.style.display="block"; "取消设置"if(confirm("是否取消设置?"))obj.removeAttribute("style");