FEDev Story

Mobile 접속인지 확인하는 방법 본문

Mobile

Mobile 접속인지 확인하는 방법

지구별72 2016. 3. 10. 23:07

javascript로 PC접속, mobile접속인지 확인하는 방법을 찾아보았다.

navigator로 판별


    var filter = "win16|win32|win64|mac";
  
    if( navigator.platform  ){
        if( filter.indexOf(navigator.platform.toLowerCase())<0 ){
            alert("모바일접속");
        }else{
            alert("PC접속");
        }
    }

터치이벤트 생성 가능여부로 판별


   if (('createTouch' in document) || ('ontouchstart' in document)){
       alert("모바일접속");
   } else {
       alert("PC접속");
   }

HTML5/CSS3 Modernizr를 이용하면 된다고함..


   if (Modernizr.touch){
         // bind to touchstart, touchmove, etc and watch `event.streamId`
   } else {
        // bind to normal click, mousemove, etc
   }
Comments