Javascript 로 지정한 style 의 경우 구하는 예
element.style["fontSize"]
IE 의 경우 구하는 예
element.currentStyle["fontSize"]
FF 의 경우 구하는 예
document.defaultView.getComputedStyle(element, "").getPropertyValue("font-size")
참고: IE 의 경우 filter 값을 구하는 방법의 예.
element.filters.item("alpha").opacity
'javascript' 카테고리의 다른 글
input type 변경의 크로스 브라우저 문제 (password) (0) | 2008.06.10 |
---|---|
<button> 엘리멘트의 크로스 브라우징 문제 (1) | 2008.05.26 |
JavaScript Eval 함수의 IE에서 사용 주의점 (0) | 2008.05.14 |
JavaScript 배열 변수 메소드 정리 (1) | 2008.05.14 |
User preferences color table v 1.0 (0) | 2008.05.14 |