jQuery 的光标偏移(不是插入符号)

发布于 2024-08-28 04:29:39 字数 138 浏览 2 评论 0原文

我正在尝试获取光标在单个网页上的偏移量或位置。假设我将鼠标移动到屏幕中间,然后我想知道偏移量。例如

左:603 px 顶部:

距页面坐标 0,0 521 px。

那么问题来了,是否可以用jquery获取光标坐标呢?

I'm trying to get the offset or position of the cursor on a single web page. Let's say I move the mouse to the middle of the screen, I then want to know the offset. For example

left: 603 px
top: 521 px

from the coordinate 0,0 of the page.

So the question is, is it possible to get the cursor coordinates with jquery?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

酷炫老祖宗 2024-09-04 04:29:39

例如,我似乎可以使用 jQuery 中提供的事件;

$(document).ready(function(){

     $("body").live("click", get_coords);

});

function get_coords(event){
    console.log(event.clientX);
        console.log(event.clientY);
}

无论如何,谢谢!

It seems I can use the event that avaiable in jQuery, for example;

$(document).ready(function(){

     $("body").live("click", get_coords);

});

function get_coords(event){
    console.log(event.clientX);
        console.log(event.clientY);
}

Thanks anyway!

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文