获取鼠标坐标
Posted 取个名字之麻烦
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了获取鼠标坐标相关的知识,希望对你有一定的参考价值。
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title></title> </head> <script type="text/javascript" src="scripts/jquery.js" ></script> <script type="text/javascript"> $(document).ready(function(){ $("#shiyan").mousemove(function(e){ var eve = e || window.event; document.getElementById("inp").value="X:"+e.screenX+"Y:"+e.screenY document.getElementById("inp1").value="X:"+e.pageX+"Y:"+e.pageY document.getElementById("inp2").value="X:"+e.clientX+"Y:"+e.clientY }); }); </script> <body> <div id="shiyan" style="width: 600px;height: 600px;background: antiquewhite;" > 鼠标在屏幕上的位置<input id="inp" type="text" value="" /><br /> 鼠标在页面上的位置<input id="inp1" type="text" value="" /><br /> 鼠标在页面上可视区域的位置<input id="inp2" type="text" value="" /><br /> </div> </body> </html>
以上是关于获取鼠标坐标的主要内容,如果未能解决你的问题,请参考以下文章