1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
<script> var browser = { versions: function () { var u = navigator.userAgent, app = navigator.appVersion; return { // 클라이언트 브라우저 버전 정보 trident: u.indexOf('Trident') > -1, // IE 엔진 webKit: u.indexOf('AppleWebKit') > -1, // 애플, 구글 엔진 mobile: !!u.match(/AppleWebKit.*Mobile.*/), // 모바일 단말 여부 android: u.indexOf('Android') > -1 || u.indexOf('Linux') > -1, // 안드로이드 단말 혹은 UC 브라우저 iPhone: u.indexOf('iPhone') > -1 || u.indexOf('Mac') > -1 // 아이폰 또는 QQHD 브라우저 여부 }; } () } // 모바일 단말 여부 // if (!browser.versions.mobile) { // location.href = 'https://web.telegram.org/a/'; // } </script> |