getComputedStyle 및currentStyle

1486 단어 currentStyle
 1 /*alert(div.style.width)*/ //null

 2 

 3 function getstyle(obj,name){

 4     if(obj.currentStyle) {

 5     return obj.currentStyle[name];

 6 } else {

 7     return getComputedStyle(obj,null)[name];

 8     }

 9 }

10 alert(getstyle(div,'width'))    

11 }

i와 비 i 브라우저를 호환하는 스타일 쓰기 사용하기;
zIndex  , marginLeft  backgroundColor

좋은 웹페이지 즐겨찾기