프로그래밍/자바스크립트

자바스크립트 클라이언트가 PC환경인지 모바일환경인지 확인하기

강남리치 2016. 12. 8. 11:42
반응형

<script type="text/javascript">


/*

클라이언트가 데스크탑,PC 환경이면 true를 리턴,

클라이언트가 모바일 환경이면 false를 리턴한다.

*/

function isUserAgentPC(){               
   

    var UserAgent = navigator.userAgent;
    if (UserAgent.match(/iPhone|iPod|iPad|Android|Windows CE|BlackBerry|Symbian|Windows Phone|webOS|Opera Mini|Opera Mobi|POLARIS|IEMobile|lgtelecom|nokia|SonyEricsson/i) != null || UserAgent.match(/LG|SAMSUNG|Samsung/) != null){
        return false;
    }else{
        return true;
    }
}


</script>


반응형