<!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> |
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。