jquery中获取当前鼠标的x、y位置位置

来源:互联网 发布:qq人肉软件 编辑:程序博客网 时间:2024/05/17 08:17

转自:Royal Pisces Yuan的博客http://blog.sina.com.cn/s/blog_83b447810100rwbr.html 

jquery中获取当前鼠标的x、y位置位置的代码,需要的朋友可以参考下

<divid="testDiv">放在我上面</div> 
<scripttype="text/javascript"> 
$('#testDiv').mousemove(function(e) { 
var xx = e.originalEvent.x || e.originalEvent.layerX ||0; 
var yy = e.originalEvent.y || e.originalEvent.layerY ||0; 
$(this).text(xx + '---' + yy); 
}); 
</script>

javascript获取鼠标当前位置坐标 
鼠标滑动显示鼠标的当前位置坐标,主要是onmousemove函数

<html> 
<head> 
<meta http-equiv="Content-Type" content="text/html;charset=gb2312" /> 
<title>javascript获得鼠标位置</title> 
</head> 
<body> 
<script> 
function mouseMove(ev) 
{ 
Ev= ev || window.event; 
var mousePos = mouseCoords(ev); 
document.getElementByIdx_x("xxx").value = mousePos.x; 
document.getElementByIdx_x("yyy").value = mousePos.y; 
} 
function mouseCoords(ev) 
{ 
if(ev.pageX || ev.pageY){ 
return {x:ev.pageX, y:ev.pageY}; 
} 
return{ 
x:ev.clientX + document.body.scrollLeft -document.body.clientLeft, 
y:ev.clientY + document.body.scrollTop -document.body.clientTop 
}; 
} 
document.onmousemove = mouseMove; 
</script> 
鼠标X轴: 
<input id=xxx type=text> 
鼠标Y轴: 
<input id=yyy type=text> 
</body>