美文网首页
2018-01-29

2018-01-29

作者: Sallyscript | 来源:发表于2018-01-29 22:35 被阅读0次

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

      本文链接:https://www.haomeiwen.com/subject/mmofzxtx.html