如果我想读取 javacript 中的不透明度值,我可以使用
element.style.opacity
但如果我想要 fontSize 我必须使用下面的函数。
function findFontSize( element_id )
{
var element = document.getElementById( element_id );
// var theCSSprop = element.style.fontSize; // Does not work
// var theCSSprop = element.getPropertyValue("font-size"); // Does not work
var theCSSprop = window.getComputedStyle( element, null ).getPropertyValue("font-size"); // This works
alert( theCSSprop );
}
有关的
为什么是这样?