728x90
반응형
<script type="text/javascript">
console.log(navigator.appName);
//navigator 객체에 보면 appname이라는 속성잇다.
//이것으로 브라우저버전 확인정도만 해볼수 있으나 실제로 이것을 사용하지는 않음
//Microsoft Internet Explorer - ie9
//Netscape - chrome
//Netscape - FireFox
console.log(navigator.userAgent);
//Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.64 Safari/537.31
//chorme
//Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C)
//ie9
//Mozilla/5.0 (Windows NT 6.1; WOW64; rv:20.0) Gecko/20100101 Firefox/20.0
//FireFox
//indexOf(대상문자열, 검색시작위치), 존재하지 않으면 -1을 반환, 문자열이 들어있는 위치를 반환,
if (navigator.appName.indexOf("Netscape") != -1 ){
document.write('현재 브라우저는 FF혹은 Chrome 임');
}
if (navigator.appName.indexOf("Explorer") != -1 ){
document.write('현재 브라우저는ie임');
}
</script>
console.log(navigator.appName);
//navigator 객체에 보면 appname이라는 속성잇다.
//이것으로 브라우저버전 확인정도만 해볼수 있으나 실제로 이것을 사용하지는 않음
//Microsoft Internet Explorer - ie9
//Netscape - chrome
//Netscape - FireFox
console.log(navigator.userAgent);
//Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.64 Safari/537.31
//chorme
//Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C)
//ie9
//Mozilla/5.0 (Windows NT 6.1; WOW64; rv:20.0) Gecko/20100101 Firefox/20.0
//FireFox
//indexOf(대상문자열, 검색시작위치), 존재하지 않으면 -1을 반환, 문자열이 들어있는 위치를 반환,
if (navigator.appName.indexOf("Netscape") != -1 ){
document.write('현재 브라우저는 FF혹은 Chrome 임');
}
if (navigator.appName.indexOf("Explorer") != -1 ){
document.write('현재 브라우저는ie임');
}
</script>
728x90
반응형
'모바일웹 > 모바일웹 개발 관련' 카테고리의 다른 글
[Mobile] userAgent 에이전트를 이용한 모바일 페이지로 자동 이동 (0) | 2015.03.25 |
---|---|
IE 7~11 navigator.userAgent (0) | 2015.03.25 |
navigator.userAgent로 64비트 IE 알기 (Detecting 64-bit Internet Explorer) (0) | 2015.03.25 |
navigator.userAgent (0) | 2015.03.25 |
[JavaScript] navigator.userAgent (0) | 2015.03.25 |
navigator.userAgent 를 이용한 모바일 접속확인 (0) | 2015.03.25 |
접속 기기/브라우저 정보 추출(navigator.userAgent) (0) | 2015.03.25 |
Day_46 (Request, Response) (0) | 2015.03.25 |