为了账号安全,请及时绑定邮箱和手机立即绑定

4-1的编程挑战

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

正在回答

3 回答

<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>


0 回复 有任何疑惑可以回复我~

function color(){

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

        h2.style.color="red";

        h2.style.backgruondcolor = "#ccc";

    }


0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
JavaScript入门篇
  • 参与学习       739782    人
  • 解答问题       9566    个

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

进入课程

4-1的编程挑战

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信