如何使用jQuery获取鼠标指针的当前坐标:
在实际应用中,可能需要获取当前鼠标的坐标,下面就来简单介绍一下如何实现此功能。
当然例子非常简单,大家可以根据实际需要灵活的应用和扩展。
代码实例如下:
<!DOCTYPE html> <html> <head> <meta charset=" utf-8"> <meta name="author" content="http://www.softwhy.com/" /> <title>蚂蚁部落</title> <style type="text/css"> #mytest { width:150px; height:150px; background-color:green; } </style> <script type="text/javascript" src="mytest/jQuery/jquery-1.8.3.js"></script> <script type="text/javascript"> $(document).ready(function(){ $("#mytest").mousemove(function(e){ $("span").text("x:"+e.pageX+"y:"+e.pageY+"") }) }) </script> </head> <body> <div id="mytest"></div> <div>当前鼠标指针坐标:<span></span></div> </body> </html>
以上代码可以获取当前鼠标指针坐标,不过要注意的是,此坐标并不相对于div的,而是获取的鼠标指针在文档的坐标。
相关阅读:
(1).mousemove事件可以参阅jQuery的mousemove事件一章节。
(2). text()函数可以参阅jQuery的text()方法一章节。
(3).pageX属性可以参阅jQuery的event.pageX属性一章节。
原文地址是:http://www.softwhy.com/forum.php?mod=viewthread&tid=5811
更多内容可以参阅:http://www.softwhy.com/jquery/