1.가로구하기 평선
function getClientWidth() {
var ret;
if (self.innerHeight) { // IE 외 모든 브라우저
ret = self.innerWidth;
} else if (document.documentElement && document.documentElement.clientHeight) { // Explorer 6 Strict
ret = document.documentElement.clientWidth;
} else if (document.body) { // IE Browser
ret = document.body.clientWidth;
}
return ret;
}
2. 문서의 크기 변수에담기
세로
var doc_h = (window.innerHeight || self.innerHeight || document.documentElement.clientHeight || document.body.clientHeight);
가로
var doc_w = (window.innerWidth || self.innerWidth || document.documentElement.clientWidth || document.body.clientWidth);
'웹프로그래밍 > Javascript' 카테고리의 다른 글
[Jquery] 제이쿼리 셀렉터 (0) | 2012.05.04 |
---|---|
[Jquery] Jquery 에서의 AJAX 사용 (0) | 2012.05.04 |
[자바스크립트] Float 형 계산오류 수정 (0) | 2012.04.30 |
[JAVASCRIPT] 주민번호 유효성 검사 (0) | 2012.04.11 |
[JAVASCRIPT] ie버전에 따른 윈도우 창닫기 (0) | 2011.05.12 |