MouseEvent screenY 属性
JavaScript基础 2022-06-08 12:06:46小码哥的IT人生shichen
MouseEvent screenY 属性
实例
在元素上单击鼠标按钮时,获取鼠标指针相对于屏幕的坐标:
var x = event.screenX; // 获取水平坐标
var y = event.screenY; // 获取垂直坐标
var coor = "X coords: " + x + ", Y coords: " + y;
完整实例:
<!DOCTYPE html>
<html>
<body>
<h2 onclick="showCoords(event)">请单击此标题可获取鼠标指针相对于屏幕的 x(水平)和 y(垂直)坐标,当它被点击时。</h2>
<p><b>提示:</b>请尝试单击标题中的不同位置。</p>
<p id="demo"></p>
<script>
function showCoords(event) {
var x = event.screenX;
var y = event.screenY;
var coords = "X coords: " + x + ", Y coords: " + y
document.getElementById("demo").innerHTML = coords;
}
</script>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
页面下方有更多 TIY 实例。
浏览器支持
属性 | Chrome | IE | Firefox | Safari | Opera |
---|---|---|---|---|---|
screenY | 支持 | 支持 | 支持 | 支持 | 支持 |
语法
event.screenY
技术细节
返回值: | 数字值,表示鼠标指针的垂直坐标,以像素计。 |
---|---|
DOM 版本: | DOM Level 2 Events |
更多实例
示例代码:
演示 clientX 与 clientY 以及 screenX 与 screenY 之间的区别:
var cX = event.clientX;
var sX = event.screenX;
var cY = event.clientY;
var sY = event.screenY;
var coords1 = "client - X: " + cX + ", Y coords: " + cY;
var coords2 = "screen - X: " + sX + ", Y coords: " + sY;
完整实例:
<!DOCTYPE html>
<html>
<head>
<style>
div {
width: 500px;
height: 300px;
border: 1px solid black;
text-align: center;
}
</style>
</head>
<body>
<p>单击下面的 div 元素可获取鼠标指针在单击时的 x(水平)和 y(垂直)坐标。</p>
<div onclick="showCoords(event)"><p id="demo"></p></div>
<p><b>提示:</b>请尝试单击 div 中的不同位置。</p>
<script>
function showCoords(event) {
var cX = event.clientX;
var sX = event.screenX;
var cY = event.clientY;
var sY = event.screenY;
var coords1 = "client - X: " + cX + ", Y coords: " + cY;
var coords2 = "screen - X: " + sX + ", Y coords: " + sY;
document.getElementById("demo").innerHTML = coords1 + "<br>" + coords2;
}
</script>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html