<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>获取鼠标的位置</title>
<script>
function mouseMove(ev)
{
Ev= ev || window.event;
var mousePos = mouseCoords(ev);
document.getElementById("xxx").value = mousePos.x;
document.getElementById("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>
<body>
鼠标X轴:
<input id=xxx type=text>
鼠标Y轴:
<input id=yyy type=text>
</body>
</html>
相关文章:
- 转:JS 获取鼠标位置 2021-10-30
- js 获取 鼠标位置 和获取元素位置 2022-12-23
- 获取鼠标位置、C# 获取Excel鼠标位置、获取Excel 光标位置 2021-05-30
- js获取鼠标当前的位置 2021-11-07
- js 获取鼠标的绝对位置 2021-11-07
- js获取鼠标位置的各种方法 js获取鼠标位置的各种方法 2021-11-07
- js 鼠标点击位置获取 2021-05-30