MouseEvent.clientY - Web API 接口参考 编辑
MouseEvent.clientY
是只读属性, 它提供事件发生时的应用客户端区域的垂直坐标 (与页面坐标不同)。例如,当你点击客户端区域的左上角时,鼠标事件的 clientY
值为 0 ,这一值与页面是否有垂直滚动无关。
语法
var y = instanceOfMouseEvent.clientY
Return value
被 CSSOM View Module 重新定义为一个 double
类型的浮点值. 原来这个属性是被定义为一个 long
整数. 可以在 "浏览器兼容性" 那里查看详细内容.
Example
<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>
规范
Specification | Status | Comment |
---|---|---|
CSS Object Model (CSSOM) View Module clientY | Working Draft | Redefines MouseEvent from long to double . |
Document Object Model (DOM) Level 3 Events Specification MouseEvent.clientY | Obsolete | No change from Document Object Model (DOM) Level 2 Events Specification. |
Document Object Model (DOM) Level 2 Events Specification MouseEvent.clientY | Obsolete | Initial definition. |
浏览器兼容性
BCD tables only load in the browser
The compatibility table on this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request.查看更多
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论