Javascript如何在不使用画布的情况下获取鼠标位置

时间:2015-03-17 13:11:48

标签: javascript html

如何在不使用画布的情况下在网站窗口上获得绝对鼠标位置?也许有人有想法?我试图找到任何例子,但所有样本都是用画布创建的。

1 个答案:

答案 0 :(得分:1)

您可以使用以下属性

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>