我建议这个功能:
function css( element, property ) { return window.getComputedStyle( element, null ).getPropertyValue( property );}用法:
css( object, 'font-size' ) // returns '16px' for instance
注意:
getComputedStyle不适用于IE8。

我建议这个功能:
function css( element, property ) { return window.getComputedStyle( element, null ).getPropertyValue( property );}用法:
css( object, 'font-size' ) // returns '16px' for instance
注意:
getComputedStyle不适用于IE8。