<!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>
你是在document上对div进行移动的呀,当然委托给document来获取鼠标的坐标值最为方便最为准确了。