返回js控制div...登陆

js控制div

世界的背影2019-01-21 14:44:02161

<!DOCTYPE html>

<style>

    #x{

        width: 100px;

        height: 100px;

        background-color:red;

    }

</style>

<html>

    <head>

        <meta charset="utf-8">

    </head>

    <body>

        <div id="x">

            

        </div>

        <button onclick="a()">变高</button>

        <button onclick="b()">变宽</button>

        <button onclick="c()">变色</button>

        <button onclick="d()">重置</button>

        <button onclick="e()">隐藏</button>

        <button onclick="f()">显示</button>

    </body>

</html>

<script type="text/javascript">

    var x = document.getElementById('x');

    function a(){

        x.style.height = "200px";

    }

    function b(){

        x.style.width = "200px";

    }

    function c(){

        x.style.backgroundColor = "pink";

    }

    function d(){

        x.style.height = "100px";

        x.style.width = "100px";

        x.style.backgroundColor = "red";

    }

    function e(){

        x.style.visibility = "hidden";

    }

    function f(){

        x.style.visibility = "visible";

    }

</script>


最新手记推荐

• 用composer安装thinkphp框架的步骤• 省市区接口说明• 用thinkphp,后台新增栏目• 管理员添加编辑删除• 管理员添加编辑删除

全部回复(0)我要回复

暂无评论~
  • 取消回复发送