有人能告诉我Javascript方法如何“offsetleft”,“offsettop”,“offsetwidth”和“offsetheight”在IE中有效吗?我们怎样才能让它们在IE中正常运行? 请告诉我一个合适的功能。
提前致谢!
这是我的代码......它在IE中给出了不同的结果。
function getContainerWidth(container){
var outerWrapWidth = container.offsetWidth;
return outerWrapWidth;
}
function getContainerHeight(container){
var outerWrapHeight = container.offsetHeight;
return outerWrapHeight;
}
function findPosX(ele){
var left = ele.offsetLeft;
return left;
}
function findPosY(ele){
var top = ele.offsetTop;
return top;
}
var obj = document.getElementById('obj1');
console.log('width : '+getContainerWidth(obj))
console.log('height : '+getContainerHeight(obj))
console.log('left : '+findPosX(obj))
console.log('top : '+findPosY(obj))