在javascript中,在onMouseMove的javascript事件处理程序中,如何在相对于页面顶部的x,y坐标中获取鼠标位置?
答案 0 :(得分:25)
如果你可以使用jQuery,那么this会有所帮助:
<div id="divA" style="width:100px;height:100px;clear:both;"></div>
<span></span><span></span>
<script>
$("#divA").mousemove(function(e){
var pageCoords = "( " + e.pageX + ", " + e.pageY + " )";
var clientCoords = "( " + e.clientX + ", " + e.clientY + " )";
$("span:first").text("( e.pageX, e.pageY ) - " + pageCoords);
$("span:last").text("( e.clientX, e.clientY ) - " + clientCoords);
});
</script>
这里只是纯JavaScript的例子:
var tempX = 0;
var tempY = 0;
function getMouseXY(e) {
if (IE) { // grab the x-y pos.s if browser is IE
tempX = event.clientX + document.body.scrollLeft;
tempY = event.clientY + document.body.scrollTop;
}
else { // grab the x-y pos.s if browser is NS
tempX = e.pageX;
tempY = e.pageY;
}
if (tempX < 0){tempX = 0;}
if (tempY < 0){tempY = 0;}
document.Show.MouseX.value = tempX;//MouseX is textbox
document.Show.MouseY.value = tempY;//MouseY is textbox
return true;
}
答案 1 :(得分:5)
使用d3.js仅用于查找鼠标坐标可能有点过分,但它们有一个非常有用的函数d3.mouse(*container*)
。以下是您要执行的操作的示例:
var coordinates = [0,0];
d3.select('html') // Selects the 'html' element
.on('mousemove', function()
{
coordinates = d3.mouse(this); // Gets the mouse coordinates with respect to
// the top of the page (because I selected
// 'html')
});
在上述情况下,x坐标为coordinates[0]
,y坐标为coordinates[1]
。这非常方便,因为您可以通过'html'
与标记(例如'body'
),类名(例如'.class_name'
)交换来获取您想要的任何容器的鼠标坐标,或id(例如'#element_id'
)。
答案 2 :(得分:4)
特别是在使用mousemove事件时,快速和激烈的事件,在使用它们之前削减处理程序是好的 -
var whereAt= (function(){
if(window.pageXOffset!= undefined){
return function(ev){
return [ev.clientX+window.pageXOffset,
ev.clientY+window.pageYOffset];
}
}
else return function(){
var ev= window.event,
d= document.documentElement, b= document.body;
return [ev.clientX+d.scrollLeft+ b.scrollLeft,
ev.clientY+d.scrollTop+ b.scrollTop];
}
})()
<强> document.ondblclick =函数(E){警报(在该处(E))}; 强>
答案 3 :(得分:4)
尝试使用并适用于所有浏览器:
function getMousePos(e) {
return {x:e.clientX,y:e.clientY};
}
现在你可以在这样的事件中使用它:
document.onmousemove=function(e) {
var mousecoords = getMousePos(e);
alert(mousecoords.x);alert(mousecoords.y);
};