다음과 같이 코드 코드를 복사합니다.
var 브라우저 = {
버전: 함수 () {
var u = navigator.userAgent, app = navigator.appVersion;
return {//모바일 단말기 브라우저 버전 정보
trident: u.indexOf('Trident') > -1, //IE 커널
presto: u.indexOf('Presto') > -1, //오페라 커널
webKit: u.indexOf('AppleWebKit') > -1, //애플, 구글 커널
gecko: u.indexOf('Gecko') > -1 && u.indexOf('KHTML') == -1, //Firefox 커널
mobile: !!u.match(/AppleWebKit.*Mobile.*/) || !!u.match(/AppleWebKit/), //모바일 단말기인지 여부
ios: !!u.match(//(i[^;]+;( U;)? CPU.+Mac OS X/), //ios 터미널
android: u.indexOf('Android') > -1 || u.indexOf('Linux') > -1, //안드로이드 터미널 또는 uc 브라우저
iPhone: u.indexOf('iPhone') > -1 || u.indexOf('Mac') > -1, //iPhone인지 QQHD 브라우저인지
iPad: u.indexOf('iPad') > -1, //아이패드인지 여부
webApp: u.indexOf('Safari') == -1 //웹이 헤더와 하단이 없는 프로그램이어야 하는지 여부
};
} (),
언어: (navigator.browserLanguage || navigator.언어).toLowerCase()
}
if (browser.versions.mobile == true || browser.versions.ios == true || browser.versions.android == true) {
window.location.href = 대상;
}