간단한 브라우저 정보 알아오기이다.
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=EUC-KR">
<title>Navigator 객체를 이용한 사용자 브라우저 정보 알아보기</title>
</head>
<body>
<h2>브라우저 정보</h2>
<script type="text/javascript">
document.write("브라우저 코드 : " + navigator.appCodeName + "<BR>");
document.write("브라우저 이름 : " + navigator.appName + "<BR>");
document.write("브라우저 버전 : " + navigator.appVersion + "<BR>");
document.write("사용 언어 : " + navigator.language + "<BR>");
document.write("시스템 코드 : " + navigator.platform + "<BR>");
document.write("UserAgent : " + navigator.userAgent + "<BR>");
document.write("스크립트 가능 유무 : " + navigator.javaEnabled() + "<BR>");
document.write("오류 유무 : " + navigator.taintEnabled() + "<BR>");
</script>
</body>
</html>
일단 위와같고. navigator로 알아오는 것이다.
크롬, 사파리, 파이어폭스는 Netscape로 표기가 되고 오페라는 Opera로 익스플로어는 Explorer로 각각 브라우저 이름이 표기된다.
'프로그래밍 > JAVASCRIPT' 카테고리의 다른 글
[JAVASCRIPT] 브라우저 X버튼 막기. (0) | 2010.11.16 |
---|---|
[JAVA SCRIPT] WINDOW.OPEN (0) | 2010.09.01 |
Textarea에 현제 글자(문자)의 바이트 수를 알아오기 (0) | 2010.07.13 |
Textarea 글자수제한. (0) | 2010.07.13 |
스크립트로 이미지 사이즈를 조정 (0) | 2010.07.12 |