2018-01-29

mooc的编程练习

var head=document.getElementById("con");

  var bbody=document.getElementById("txt");

//定义"改变颜色"的函数

function changecolor()

{

    bbody.style.color="red";

    bbody.style.backgroundColor="blue";

    head.style.color="green";

}

//定义"改变宽高"的函数

function changeSize()

{

    bbody.style.width="300px";

    bbody.style.height="300px";

}

//定义"隐藏内容"的函数

function hidetext()

{

    bbody.style.display="none";

}

//定义"显示内容"的函数

function showtext()

{

    bbody.style.display="block";

}

//定义"取消设置"的函数

function regret()

{

    var t=comfirm=("确定取消?");

    if(t==true)

    {

        bbody.removeAttribute("style");

    }

}

你可能感兴趣的:(2018-01-29)