HTML页面上获取鼠标的位置(备忘)

 <html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>javascript获得鼠标位置</title>
</head>
<body>
<script> <!-- 其中的参数e指的是事件-->
function mouseMove(ev)
{
Ev= ev || window.event;
var mousePos = mouseCoords(ev);
//获取当前的x,y坐标
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>
鼠标X轴:
<input id=xxx type=text>
鼠标Y轴:
<input id=yyy type=text>
</body>
</html>
上一篇:UVA10474 Where is the Marble?【排序】


下一篇:[WPF]获取鼠标指针下的元素