问答详情
源自:4-1 编程挑战

这样编写 对吗??

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"); 

   }

}


提问者:cp0417 2016-03-22 17:57

个回答

  • 道桴
    2016-03-22 18:20:36

    不是很好