给body绑定事件没有效果啊?

倒数第二行在给body绑定方法时,发现如果不给body设置长宽,那么body的范围就只有.out那么大?
我记得不是这样的啊.能否解释一下?谢谢

    <style>
        body{background: red;}
        .out{width: 508px;background: pink;overflow:hidden;position: absolute;}
        .line{width: 500px;height: 100px;background: green;border:4px solid orange;margin:10px 0;position: relative;}
    </style>
 </head>
 <body id="body"> 
    <div id="out"  class="out">    
        <div class="line"></div>
        <div class="line"></div>
        <div class="line"></div>
        <div class="line"></div>
        <div class="line"></div>
    </div>
    
<script>
    //dom获取id方法
    function $(element){return document.getElementById(element);}
    //dom获取class方法
    function cl(element){return document.getElementsByClassName(element);}
    //移动方法
    function move(){
        cl("out")[0].style.position = "absolute";
        
        cl("out")[0].style.top = event.clientY + "px";
    }
    //绑定方法
    $("body").addEventListener("mousemove",move)

</script>
阅读 5.2k
4 个回答

body的大小是跟文档内容有关的,可以加上以下样式:

html, body{
    height:100%;
}

首先,获取body,直接document.body就可以了,而且是没有mousemove事件的,只有mouseove和mouseout两个事件,jquery实现了mousemove方法

事件名字写错了,body的大小是和文档有关的

估计是事件名字有问题吧

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题