'Hieght'에 해당되는 글 1건

  1. 2007/09/11 높이 구하기~ Div Object Height (1)
for web2.0/javascript2007/09/11 13:52

DIV 와 같은 HTML Object의 Height를 구할 때...아래와 같이..하면 얻어집니다..

if(document.getElementById){
oHeight = document.getElementById(id).offsetHeight;
}
else if (document.layers){
oHeight = document.layers[id].clip.height;
}



Posted by maketalk.net