1 2 3 4 5 6 7 | var UserAgent = navigator.userAgent; if(UserAgent.match(/iPhone|iPod|iPad|iPad2|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) { top.location.href = "모바일URL"; }else{ top.location.href = "웹URL"; } | cs |
'WEB > Javascript' 카테고리의 다른 글
레이어 팝업 중앙 띄우기 (0) | 2017.02.17 |
---|---|
Callback Function 콜백함수 (0) | 2017.01.06 |
Scope & Hoisting (0) | 2017.01.04 |
변수의 Scope (0) | 2017.01.04 |
Closure 클로저 (0) | 2017.01.03 |