开发者

JavaScript: How to find out the position of the mouse in the div box?

开发者 https://www.devze.com 2022-12-11 09:57 出处:网络
I know how to find out the position of the mouse relative t开发者_运维百科o the top-left corner of the browser window, but I don\'t know how to do so relative to the top-left corner of the div box. Tr

I know how to find out the position of the mouse relative t开发者_运维百科o the top-left corner of the browser window, but I don't know how to do so relative to the top-left corner of the div box.


Try the follow Javascript function.

var IE = document.all?true:false

if (!IE) {
 document.captureEvents(Event.MOUSEMOVE);
}



function getMousePosition(e) {
  if (IE) { 
    var X = event.clientX + document.body.scrollLeft
    var Y = event.clientY + document.body.scrollTop
  } else { 
    var X = e.pageX
    var Y = e.pageY
  }  

  if (X < 0) {
       X = 0
   }
  if (Y < 0) {
     Y = 0
  }  
  alert("X : "+ X +" Y: "+ Y);
}

document.onmousemove = getMousePosition;


If you get the top-left corner of the div box, you can just subtract this from the screen coordinates of the mouse.


According to this page, there are 6 pairs of coordinate. You may try them. I guess the right one might be clientX,clientY.

Hope this helps.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号