본문 바로가기

코딩/jquery

모바일,pc 접속 기기 구분하기

  
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]