본문 바로가기

javascript

자바스크립트 현재 윈도우 창의 크기 알아내기

if (window.XMLHttpRequest) { // non IE

alert("난 익스아님 : "+window.innerWidth+" / "+window.innerHeight );

} else if (window.ActiveXObject) { //IE

alert("난 익스 : "+window.document.body.offsetHeight+" / "+window.document.body.offsetWidth );

}