var txt=document.getElementById("txt");
//定义"改变颜色"的函数
function changeColor(){
txt.style.color="red";
txt.style.backgroundColor="#ccc";
}
//定义"改变宽高"的函数
function changeSize(){
txt.style.width="700px";
txt.style.height="200px";
}
//定义"隐藏内容"的函数
function hidetext(){
txt.style.display="none";
}
//定义"显示内容"的函数
function showtext(){
txt.style.display="block";
}
//定义"取消设置"的函数
function offSet(){
var mymessage=confirm("你确定要重置所有设置吗?");
if(mymessage==true){
txt.removeAttribute("style");
}
}
不是很好