判断移动设备访问自动跳转到移动版页面
时间:2014-05-26 10:06:19
收藏:0
阅读:929
UA判断,写js里面,页面加载时执行
if( /Android|webOS| iPhone | iPad | iPod |BlackBerry|opera mini|opera mobile|appleWebkit.*mobile|mobile/i.test(navigator.userAgent) ) { window.location = ‘wap.html‘; }
评论(0)