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

"改变颜色"、"改变宽高"、"隐藏内容"、"显示内容"、"取消设置"的函数

"改变颜色"、"改变宽高"、"隐藏内容"、"显示内容"、"取消设置"的函数

提问者:Chacetse 2015-01-07 17:21

个回答

  • 越野的小棉袄
    2015-12-17 22:44:15

    发错了。。。。

  • 越野的小棉袄
    2015-12-17 22:43:15

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

    function chang()

    {

        txt.style.color="red";

        txt.style.backgroundColor="yellow";

    }


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

    function widt()

    {

        txt.style.width="100px";

        txt.style.height="500px";

    }

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

    function hind()

    {

        txt.style.display="none";

    }


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

    function show()

    {

    txt.style.display="block";

    }


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

    function re()

    {

       txt.style.height="400px";

        txt.style.width="600px";

        txt.style.color="";

         txt.style.backgroundColor="";

        }