GarrettZhang
1/20/2018 - 7:43 AM

获取鼠标在 body 上的坐标

$('body').click(function(event){
  //获取鼠标在body上的坐标 
  console.log('X:' + event.offsetX+'\n Y:' + event.offsetY); 

  //获取元素相对于页面的坐标 
  console.log('X:'+$(this).offset().left+'\n Y:'+$(this).offset().top);
});