DeVeLoP
[WeB] 모바일 브라우저 체크
freecatz
2019. 2. 19. 10:16
function browserCheck(){
var browserCheckText = new Array('iPhone', 'iPod', 'BlackBerry', 'Android', 'Windows CE', 'LG', 'MOT', 'SAMSUNG', 'SonyEricsson');
for (var word in browserCheckText){
if(navigator.userAgent.toUpperCase().match(browserCheckText[word].toUpperCase()) != null){
location.href = "<%=ctxPath%>/jsp/mobile/mobile.jsp";
break;
}
}
}