获取鼠标坐标

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>

 

以上是关于获取鼠标坐标的主要内容,如果未能解决你的问题,请参考以下文章

JS 获取屏幕中鼠标的坐标值

jsp里面,怎么获取鼠标在网页中的坐标?

QT如何获取窗口外的鼠标点击事件,或者鼠标坐标

JavaScript获取鼠标点击坐标

C#+ARCENGINE,如何获取mapcontrol控件上鼠标点击位置的具体坐标?不是要鼠标的坐标

如何在 Fabric.js 上获取鼠标坐标?