Document
*{
margin: 0;
padding: 0;
}
#box{
width: 100px;
height: 100px;
background: pink;
left: 100px;
top:50px;
}
var box = document.getElementById('box');
function getStyle(element,attr){
if(window.getComputedStyle){
return window.getComputedStyle(element,null)[attr];
}else{
return element.currentStyle[attr];
}
}
document.getElementById('btn').οnclick=function(){
// console.log(box.offsetLeft)
console.log(getStyle(box,'top')); //50px,是一个字符串类型
}
一键复制
编辑
Web IDE
原始数据
按行查看
历史