JavaScript 中 clientY Mouse Event 的作用是什么?
触发鼠标事件时,clientY 鼠标事件属性用于获取鼠标指针的纵坐标。此坐标根据当前窗口而定。
示例
可尝试运行以下代码,了解如何在 JavaScript 中实现 clientY 鼠标事件。
<!DOCTYPE html>
<html>
<body>
<p onclick = "coordsFunc(event)">Click here to get the x (horizontal) and y (vertical) coordinates (according to current window) of the mouse pointer.</p>
<script>
function coordsFunc(event) {
var x_coord = event.clientX;
var y_coord = event.clientY;
var xycoords = "X coords= " + x_coord + ", Y coords = " + y_coord;
document.write(xycoords);
}
</script>
</body>
</html>
广告
数据结构
网络
关系型数据库管理系统
操作系统
Java
iOS
HTML
CSS
Android
Python
C 语言编程
C++
C#
MongoDB
MySQL
Javascript
PHP