1 2 3 4 5 6 7 | var userAgent = navigator.userAgent.toLowerCase(); var mobile = (/iphone|ipad|ipod|android/i.test(userAgent)); if (mobile) { window.location.href = "/mobile/index.html"; } | cs |
분기시키자.
반응형이 아니라 웹과 모바일을 따로 분리해서 제작해야할때.
모바일로 접근하면 모바일페이지로 분기.