js識別用戶設備是移動端手機時跳轉到手機網站

 

1、識別到用戶的設備是手機等移動端設備時跳轉到移動端網站android

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 = 'http://m.sxuek.com'; break; } }
相關文章
相關標籤/搜索