获取鼠标早盒子中的 位置

Posted jiumen

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了获取鼠标早盒子中的 位置相关的知识,希望对你有一定的参考价值。

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Document</title>
  <style>
    body 
      margin: 0;
    

    #box 
      width: 300px;
      height: 300px;
      border: 1px solid red;
      margin: 100px 10px 10px 100px;
    
  </style>
</head>
<body>
  <div id="box">
    
  </div>
  <script src="common.js"></script>
  <script>
    var box = document.getElementById(box);
    box.onclick = function (e) 
      // 获取盒子在页面上的位置
      // console.log(this.offsetLeft);
      // console.log(this.offsetTop);

      e = e || window.event;
      // 获取鼠标在盒子中的位置 = 鼠标的坐标 - 盒子的坐标
      // var x = e.pageX
      var x = getPage(e).pageX - this.offsetLeft;
      var y = getPage(e).pageY - this.offsetTop;
      console.log(x);
      console.log(y);

    
  </script>
</body>
</html>

 

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

0187 案例:获取鼠标在盒子内的坐标

获取 QImage 中的鼠标位置

初学js---获取鼠标在页面中的位置

js获取鼠标距离

js:网页中的高和宽(document)

在AngularJS中的滚动事件上获取鼠标位置