모바일웹
모바일페이지로 이동하는 스크립트
행복안테나
2012. 5. 14. 18:03
<script type="text/javascript">
var mobileKeyWords = new Array('iPhone', 'iPod', 'BlackBerry', 'Android', 'Windows CE', 'LG', 'MOT','SAMSUNG', 'SonyEricsson');
for (var word in mobileKeyWords){
if (navigator.userAgent.match(mobileKeyWords[word]) != null&& confirm("모바일 브라우저 입니다. 모바일 페이지로 이동하시겠습니까?")) {
location.href = "http://m.truesolution.co.kr"; break;
}
}
</script>
또는..
<script type="text/javascript">
var UserAgent = navigator.userAgent;
if (UserAgent.match(/iPhone|iPod|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)
{
location.href = "http://m.daum.net";
}
//else
//{
// alert("Web");
}
</script>