jquery获取文档元素坐标值

  <!DOCTYPE html>
  <html lang="en">
  <head>
  <Meta charset="UTF-8">
  <title>Document</title>
  <style>
  /**{
  margin: 0;
  padding: 0;
  }*/
  div{
  width: 800px;
  height: 800px;
  border:1px solid #eee;
  position: relative;
  margin: 50px;
  }
  img{
  position: absolute;
  top: 50px;
  left: 80px;
  }
   
  </style>
  <script src='js/jquery-1.11.3.min.js'></script>
  <script>
  $(function(){
  $('button:eq(0)').click(function(){
  alert($('.Box').offset().top + ',' + $('.Box').offset().left);
  })
  $('button:eq(1)').click(function(){
  alert($('img').position().top+ ',' + $('img').position().left);
  })
  })
  </script>
  </head>
  <body>
  <button>获取div的文档坐标值</button>
  <button>获取图片相对于定位点的坐标值</button>
  <div class='Box'><img src="images/lunbo/0.jpg" alt=""></div>
  </body>
  </html>

相关文章

页面搜索关键词突出 // 页面搜索关键词突出 $(function () {...
jQuery实时显示日期、时间 html: &lt;span id=&quot...
jQuery 添加水印 &lt;script src=&quot;../../../.....
中文:Sys.WebForms.PageRequestManagerParserErrorExceptio...
1. 用Response.Write方法 代码如下: Response.Write(&q...
Jquery实现按钮点击遮罩加载,处理完后恢复 思路: 1.点击按...