Javascript控制div样式

Original 2018-12-23 07:32:42 252
abstract:<!DOCTYPE html><html>  <head>    <meta charset="utf-8">    <title>changDIV</title>    <style type="text/css&quo

<!DOCTYPE html>

<html>

  <head>

    <meta charset="utf-8">

    <title>changDIV</title>

    <style type="text/css">

      #box{width:100px;height:100px;background:red;margin:100px 100px;}

    </style>

    <script type="text/javascript">

      var box

      window.onload=function(){

        box=document.getElementById('box')

      }

      function a(){

        box.style.height="400px"//变高

      }

      function b(){

        box.style.width="400px"//变宽

      }

      function c(){

        box.style.background="pink"//变色

      }

      function d(){

        box.style.height="100px"//重置

        box.style.width="100px"

        box.style.background="red"

      }

      function e(){

        box.style.display="none"//隐藏

      }

      function f(){

        box.style.display="block"//显示

      }

    </script>

  </head>

  <body>

    <!-- 用按钮控制div高度、宽度、颜色、重置、隐藏、显示 -->

    <div id="box"></div>

    <input type="button" value="变高" onclick="a()">

    <input type="button" value="变宽" onclick="b()">

    <input type="button" value="变色" onclick="c()">

    <input type="button" value="重置" onclick="d()">

    <input type="button" value="隐藏" onclick="e()">

    <input type="button" value="显示" onclick="f()">

  </body>

</html>


第一步,先写好完整的布局结构并命名;

第二步,为需要控制的div拟定不同的方法;

第三步,将方法与div进行链接


Correcting teacher:天蓬老师Correction time:2018-12-23 10:38:18
Teacher's summary:作业写的不错,不过函数的命名最好不要用a,b,c等无意义的名字,这样的代码是不能放到真实项目中的。好的编码习惯从一开始就要培养

Release Notes

Popular Entries