jQuery 的光标偏移(不是插入符号)
我正在尝试获取光标在单个网页上的偏移量或位置。假设我将鼠标移动到屏幕中间,然后我想知道偏移量。例如
左: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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
例如,我似乎可以使用 jQuery 中提供的事件;
无论如何,谢谢!
It seems I can use the event that avaiable in jQuery, for example;
Thanks anyway!