모바일 접속 여부
모바일 여부만 체크
<script type="text/javascript">
var filter = "win16|win32|win64|mac";
if(navigator.platform){
if(0 > filter.indexOf(navigator.platform.toLowerCase())){
alert("Mobile");
}else{
alert("PC");
}
}
</script>
모바일 기종 체크
<script type="text/javascript">
var mobileArr = new Array("iPhone", "iPod", "BlackBerry", "Android", "Windows CE", "LG", "MOT", "SAMSUNG", "SonyEricsson");
for(var txt in mobileArr){
if(navigator.userAgent.match(mobileArr[txt]) != null){
// 작업
break;
}
}
</script>
웹 브라우져 종류 체크
<script type="text/javascript">
var browser = navigator.userAgent.toLowerCase();
if(-1 != browser.indexOf("chrome")){
alert("chrome");
}
if(-1 != browser.indexOf("msie")){
alert("msie");
}
if(-1 != browser.indexOf("opera")){
alert("opera");
}
</script>
'Programming > javascript' 카테고리의 다른 글
[javascript] 클로저를 이용한 시퀀스 효과 (0) | 2015.05.13 |
---|---|
[javascript] 월초 월말 (0) | 2015.05.11 |
[javascript] Math.random() 임의의 수 반환하기 (0) | 2015.04.09 |
[javascript] 팝업 오늘 하루동안 열지 않음 (0) | 2015.04.07 |
[javascript] 자식창에서 부모창 함수 호출 (0) | 2015.04.02 |