日期:2014-05-17 浏览次数:20686 次
完善上一篇日志中demo的两个不足。?
?
?
css样式表有三种写法:
?
? ? ? ? 在JavaScript中,通过document.getElementById(id).style.XXX就可以获取到XXX的值,但意外的是,这样做只能取到通过内嵌方式设置的样式值,即style属性里面设置的值。?
? ? ? ? 解决方案:引入currentStyle,runtimeStyle,getComputedStyle style 标准的样式:
?
?
/*Get css property value from extenal style sheet for IE browser */ if(hid.currentStyle) { display = hid.currentStyle['display']; } /*Get css property value from extenal style sheet for FireFox, Chrome browser */ else if(window.getComputedStyle) { display = window.getComputedStyle(hid, null)['display']; }
参考链接:http://apps.hi.baidu.com/share/detail/22727000
?
?
以下完全摘自:?获得一个不能预知高度的DIV的高度
?