다만 옛날에 C, C++을 다뤄볼게 다이다.
하나 하나 공부해가며, 내일 부터 올릴예정이다.
흠.... 공부 열심히 해야지.
간단한 브라우저 정보 알아오기이다.
<!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] 브라우저 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 |
디자인에 필요한 프로그램. (0) | 2010.07.27 |
---|---|
[window명령어] 기본명령어 (0) | 2010.07.27 |
[CMD] 사이트 주소로 IP 알아내기 (0) | 2010.07.27 |
대출계산기 (대출이자계산기) (0) | 2010.07.26 |
XP에서 스킨을 MAC APPLE로 변경시키기. (0) | 2010.07.13 |