nodebook/20191016/offset.html
2019-10-19 15:25:41 +08:00

51 lines
1.2 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<style>
* {
margin: 0;
padding: 0;
}
.outer {
width: 400px;
height: 400px;
background: red;
padding: 50px;
border: 10px solid skyblue;
margin: 20px;
}
.inner {
width: 100px;
height:100px;
background: green;
padding: 10px;
border: 5px solid blue;
margin: 20px;
}
</style>
</head>
<body>
<div class="outer">
<div class="inner" id="inner"></div>
</div>
<input type="button" value="按钮" id='btn'>
<script type="text/javascript">
//offset
var btn = document.getElementById('btn')
var inner = document.getElementById('inner')
document.getElementById('btn').onclick = function() {
//获取元素的宽度(content border padding)
console.log(inner.offsetWidth); //不包括maigin
//获取元素的高度
console.log(inner.offsetHeight);
//普通文档流 元素距离左侧的距离
console.log(inner.offsetLeft);
console.log(inner.offsetTop);
}
</script>
</body>
</html>