标签:computed width odi element span size ntb tco nts
var oDiv = document.getElementById(‘aa‘);
if(oDiv.currentStyle){
var style = oDiv.currentStyle;
alert(‘ie:‘+style.width)
} else if(window.getComputedStyle) {
var style = window.getComputedStyle(oDiv);
alert(‘谷歌:‘+style.width)
}
函数语法:currentStyle、getComputedStyle兼容判断
标签:computed width odi element span size ntb tco nts
原文地址:https://www.cnblogs.com/liubingyjui/p/10234811.html