This question already has answers here:
Javascript - Track mouse position
(11个答案)
5年前关闭。
如何不使用画布就可以在网站窗口上获得鼠标的绝对位置?也许有人知道吗?我尝试查找任何示例,但所有示例都是使用canvas创建的。
(11个答案)
5年前关闭。
如何不使用画布就可以在网站窗口上获得鼠标的绝对位置?也许有人知道吗?我尝试查找任何示例,但所有示例都是使用canvas创建的。
最佳答案
您可以使用以下属性
MouseEvent.clientX
MouseEvent.clientX
<html>
<head>
<title>clientX\clientY example</title>
<script type="text/javascript">
function showCoords(evt){
alert(
"clientX value: " + evt.clientX + "\n"
+ "clientY value: " + evt.clientY + "\n"
);
}
</script>
</head>
<body onmousedown="showCoords(event)">
<p>To display the mouse coordinates click anywhere on the page.</p>
</body>
</html>
10-08 15:16