4-1的编程挑战

来源:4-1 编程挑战

lululu燕儿3233565

2016-05-05 14:58

有没有人有正确的代码,我不会写,谢谢

写回答 关注

2回答

  • Magicworm
    2016-05-05 15:35:17

    <script type="text/javascript">

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

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

        function changeColor(){

            txt.style.color = "red";

        }


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

        function changeWH(){

            txt.style.width = "300px";

            txt.style.height = "300px";

        }


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

        function hide(){

            txt.style.display = "none";

        }


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

        function show(){

            txt.style.display = "block";

        }


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

        function resetChange(){

            var a = confirm("是否还原?");

            if ( a==true ){

                txt.style.color = "#000";

                txt.style.width = "600px";

                txt.style.height = "400px";

            }

        }

    </script>


  • 是不是哭著就不難過了
    2016-05-05 15:20:48

    function color(){

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

            h2.style.color="red";

            h2.style.backgruondcolor = "#ccc";

        }


JavaScript入门篇

JavaScript做为一名Web工程师的必备技术,本教程让您快速入门

739817 学习 · 9566 问题

查看课程

相似问题

4-1编程挑战

回答 3

4-1编程挑战

回答 3

4-1编程挑战

回答 3

编程挑战4-1

回答 2

4-1编程挑战

回答 2