码迷,mamicode.com
首页 > Web开发 > 详细

jquery获取某组件距离边框的距离

时间:2020-02-21 14:21:49      阅读:105      评论:0      收藏:0      [点我收藏+]

标签:height   效果   inf   alt   img   ack   OLE   absolute   top   

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<title>jquery获取组件距离边界的距离</title>

<script src="../jquery.js"></script> 
 
</head>
    <body>
        <div id="div01" style="width:200px;height:200px; position:absolute; left:400px; top:100px; background-color:blue"></div>
    </body>
    
    
<script>
    var left1 = $("#div01").offset().left;
    var top1 = $("#div01").offset().top;
    
    console.info("left :" + left1);
    console.info("top :" + top1);
</script>
</html>    

效果:

技术图片

 

jquery获取某组件距离边框的距离

标签:height   效果   inf   alt   img   ack   OLE   absolute   top   

原文地址:https://www.cnblogs.com/1998xujinren/p/12340998.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!