WEB 教程
实践 示例
HTML 参考手册
CSS 参考手册
PHP 参考手册

如何使用 jQuery 找到相对于文档的鼠标位置

主题:JavaScript / jQuery上一页|下一页

答案:使用jQuery event.pageXevent.pageY

jQuery event.pageX 可用于查找鼠标相对于文档左边缘的位置,而event.pageY 可用于查找鼠标相对于文档上边缘的位置。 让我们看一个例子来了解它是如何工作的:

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>jQuery Find Coordinates of Mouse Pointer</title>
<style>
    *{
        margin: 0;
    }
    html, body{
        height:100%;
    }
</style>
<script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
<script>
$(document).ready(function() {
    $("body").mousemove(function(event){
        var relPageCoords = "(" + event.pageX + "," + event.pageY + ")";
        $(".mouse-cords").text(relPageCoords);
    });
});
</script>
</head>
<body>
    <p>Coordinates of mouse pointer with respect to the page are: <strong class="mouse-cords"></strong></p>
</body>
</html>

FAQ 相关问题解答

以下是与此主题相关的更多常见问题解答:

Advertisements