<script language="javascript">
document.write("가로 = "+window.document.body.offsetWidth+"<br>");
document.write("세로 = "+window.document.body.offsetHeight+"<br>");
</script>
네스케이프의 경우는 아래와 같이 하시고..
window.innerWidth
window.innerHeight
익스플로어의 경우는 아래와 같이 하시면 됩니다.
window.document.body.offsetHeight
window.document.body.offsetWidth
document.write("가로 = "+window.document.body.offsetWidth+"<br>");
document.write("세로 = "+window.document.body.offsetHeight+"<br>");
</script>
네스케이프의 경우는 아래와 같이 하시고..
window.innerWidth
window.innerHeight
익스플로어의 경우는 아래와 같이 하시면 됩니다.
window.document.body.offsetHeight
window.document.body.offsetWidth
반응형
'홈페이지 제작 > JavaScript' 카테고리의 다른 글
iframe 의 width, height 값을 크기에 맞게 자동 조절하기 (0) | 2006.04.13 |
---|---|
TEXTAREA 에서 Focus() 위치 (커서위치) 마지막 으로 보내기 (0) | 2005.12.19 |
주민등록번호 앞자리 입력시 뒷자리로 자동 커서이동 (0) | 2005.12.12 |
자바스크립트 정규식 사용예제 (0) | 2005.10.21 |
자바스크립트 정규식 (0) | 2005.10.21 |