晨风

-------------------- 业精于勤,荒于嬉;行成于思,毁于随

导航

判断移动设备访问自动跳转到移动版页面

Posted on 2014-05-23 11:06  shenyixin  阅读(2323)  评论(0编辑  收藏  举报

UA判断,写js里面,页面加载时执行

if( /Android|webOS| iPhone | iPad | iPod |BlackBerry|opera mini|opera mobile|appleWebkit.*mobile|mobile/i.test(navigator.userAgent) ) {
window.location = 'wap.html';
}