
test
#parent {
position: relative;
width: 200px;
height: 200px;
padding: 10px;
border: 10px solid red;
margin: 20px;
background-color: yellow;
}
#id1 {
width: 100px;
height: 100px;
padding: 10px;
border: 10px solid #000;
margin: 10px;
background-color: blue;
}
var op = document.getElementById('id1');
alert(op.offsetWidth);
alert('offsetLeft:' + op.offsetLeft);
alert('offsetTop:' + op.offsetTop);
offsetWidth:140
offsetLeft:20
offsetTop:10/20 IE6 7 值为10 其他为20
http://jsfiddle.net/x7DY3/1/
Copyright 2014-2026 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号
ringa_lee