鼠标位置计数
您好,我正在使用 Jquery 的鼠标位置来查找页面的位置。
我希望它的行为更像纬度和经度坐标。
$().mousemove(function(e){
$('#detect').html( e.pageX + '° N, '+ e.pageY + '° E' );
});
我意识到这不是真正的纬度和经度坐标。该框将是网页,0 是网页的绝对中间。将鼠标移至 N/E 区域将产生此结果。
如有任何帮助,我们将不胜感激。谢谢。
Hi I'm using Jquery's mouse position to find the position of the page.
I would like it to have it behave more like latitude and longitude coordinates.
$().mousemove(function(e){
$('#detect').html( e.pageX + '° N, '+ e.pageY + '° E' );
});
I realise this is not true latitude and longitude coordinates. The box would be the webpage, and 0 is absolute middle of the webpage. Moving the mouse into the N/E area would produce this result.
Any help would be appreciated. Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Javascript:
您可以在 http://jsfiddle.net/nvwzH/ 上找到测试
Javascript:
You can find a test on http://jsfiddle.net/nvwzH/