모바일/pc여부 체크

sujeong kim·2021년 8월 27일
0
function checkMobile() {
  var filter = "win16|win32|win64|mac";
  
  if(navigator.platform){
    if(0 > filter.indexOf(navigator.platform.toLowerCase())){
      console.log("Mobile");
    } else {
      console.log("PC");
    }
  }
}
profile
개발자

0개의 댓글