var filter = "win16|win32|win64|mac|macintel"; if ( navigator.platform ) { if ( filter.indexOf( navigator.platform.toLowerCase() ) < 0 ) { //mobile 접속 } else { //pc 접속 } }
var filter = "win16|win32|win64|mac|macintel";
if ( navigator.platform ) {
if ( filter.indexOf( navigator.platform.toLowerCase() ) < 0 ) {
//mobile
alert('mobile 접속');
} else {
//pc
alert('pc 접속');
}
}
출처: https://88240.tistory.com/393 [shaking blog]
출처: https://88240.tistory.com/393 [shaking blog]
'코딩 > jquery' 카테고리의 다른 글
스크롤을 감지하여 사이트의 헤더를 보이거나 숨기기 (0) | 2019.02.08 |
---|---|
모바일 팝업 띄울때 부모 스크롤 막고 팝업만 스크롤 되도록! (0) | 2019.01.24 |
window.onload를 대체하는 jquery의 ready 함수 (0) | 2019.01.11 |
노드찾기 (0) | 2018.11.09 |
스크롤 이벤트 (0) | 2018.11.02 |