var mobileAgent = new Array("iphone", "ipod", "ipad", "android", "mobile", "blackberry", "webos", "incognito", "webmate", "bada", "nokia", "lg", "ucwe_打开网站自动识别是电">
赞
踩
1.先判断用户的设备浏览器版本信息,是否匹配mobileAgent数组(常用移动浏览器系列)。
只要是移动端就自动转入相应网站。
<script type="text/javascript">
var mobileAgent = new Array("iphone", "ipod", "ipad", "android", "mobile", "blackberry", "webos", "incognito", "webmate", "bada", "nokia", "lg", "ucweb", "skyfire");
var browser = navigator.userAgent.toLowerCase();
var isMobile = false;
for (var i=0; i<mobileAgent.length; i++){
if (browser.indexOf(mobileAgent[i])!=-1){
isMobile = true;
//判断浏览器信息匹配了移动端,就跳转到指定移动网站就可以。
location.href = '/mobilexxxxxx.com/';
break;
}
}
</script>
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。