欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

获取鼠标位置

程序员文章站 2022-03-02 18:13:13
...
<html>
<head>
<script src="http://code.jquery.com/jquery-latest.js"></script>
<script type="text/javascript">
$(document).ready(function(){
  $(document).mousemove(function(){
    $("span").text("X: " + event.pageX + ", Y: " + event.pageY);
  });
});

</script>
</head>
<body>
<p>鼠标指针位于: <span></span></p>
</body>
</html>