不透明度の値を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 );
}
関連している
どうしてこれなの?