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

时间:2022-10-20 10:20:09

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

我取这个标题为"JS和jquery获取当前鼠标的x、y坐标位置谁更简单?"并不是为了华众取宠,而是为了说它们有不同的应用常合,或者说有些时候你又为了效率而不得不用JS版的来取得鼠标坐标的方法,比如Ecshop模板制作中,它本身的JS文件与Jquery有冲突
jquery中获取当前鼠标的x、y位置位置的代码,需要的朋友可以参考下

<div id="testDiv">放在我上面</div>  
<script type="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>


或者
<script type="text/javascript">
$('#testDiv').mousemove(function(e) { 
var xx=e.pageX;
var yy=e.pageY;
$(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_x_xx_x("xxx").value = mousePos.x; 
document.getElementByIdx_x_x_xx_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>
其中的参数e指的是事件