onmousemove为什么一定要委托在document上?

<!DOCTYPE html>
<html>
    <head>
        <meta charset="UTF-8">
        <title></title>
        <style type="text/css">
            *{margin: 0px; padding: 0px;}
            div {
                width: 200px;
                height: 200px;
                background: green;
                position: absolute;
                cursor: move;
            }
        </style>
    </head>
    <body>
        <div></div>
    </body>
    <script type="text/javascript">
        var div = document.querySelector('div');
        
        var divWidth = div.offsetWidth;
        var divHeight = div.offsetHeight;
        var maxWidth = document.documentElement.clientWidth - divWidth;
        var maxHeight = document.documentElement.clientHeight - divHeight; 
    
        div.onmousedown = function(e){
            var divLeft = div.offsetLeft;
            var divTop = div.offsetTop;
            var eLeft = e.clientX;
            var eTop = e.clientY;
            var _x = eLeft - divLeft;
            var _y = eTop - divTop;
            document.documentElement.onmousemove = function(ev){
                console.log(111);
                var evLeft = ev.clientX;
                var evTop = ev.clientY;
                var x = evLeft - _x;
                var y = evTop - _y;
                if(x>=maxWidth){
                    x = maxWidth;
                }
                if(x<0){
                    x = 0;
                }
                if(y>=maxHeight){
                    y = maxHeight;
                }
                if(y<0){
                    y = 0;
                }
                
            div.style.left = x+'px';
            div.style.top = y+'px';
            }    
        }
        
        document.documentElement.onmouseup = function(){
            document.documentElement.onmousemove = null;
        }
        
        
        
    </script>
</html>
阅读 3.8k
3 个回答

你是在document上对div进行移动的呀,当然委托给document来获取鼠标的坐标值最为方便最为准确了。

谁说一定呀!!!

div.onmousemove

不是一定的绑在div也可以

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