방문자의 브라우저의 스크린 정보를 확인하기 위한 객체로 screen 객체가 있다.
document.write("Total width/height: ");
document.write(screen.width + "*" + screen.height);
document.write("<br />");
document.write("Available width/height: ");
document.write(screen.availWidth + "*" + screen.availHeight);
document.write("<br />");
document.write("Color depth: ");
document.write(screen.colorDepth);
document.write("<br />");
document.write("Color resolution: ");
document.write(screen.pixelDepth);
document.write(screen.width + "*" + screen.height);
document.write("<br />");
document.write("Available width/height: ");
document.write(screen.availWidth + "*" + screen.availHeight);
document.write("<br />");
document.write("Color depth: ");
document.write(screen.colorDepth);
document.write("<br />");
document.write("Color resolution: ");
document.write(screen.pixelDepth);
위 코드의 결과)
Total width/height: 1280*800
Available width/height: 1280*770
Color depth: 32
Color resolution: undefined
Available width/height: 1280*770
Color depth: 32
Color resolution: undefined
'Java Script & DOM > Java Script ' 카테고리의 다른 글
URL 정보 객체: Location 객체 (0) | 2010.12.16 |
---|---|
최상위 객체인 window 객체 (0) | 2010.12.16 |
방문자의 브라우저 정보 탐색: Navigator 객체 (0) | 2010.12.16 |
정규표현(Regular Expression) 패턴(Pattern) 지정 방법 (0) | 2010.12.15 |
자바스크립트 정규표현 객체: RegExp (0) | 2010.12.15 |