码迷,mamicode.com
首页 > 移动开发 > 详细

判断设备 进行pc与移动端的页面分流

时间:2018-04-17 18:07:41      阅读:267      评论:0      收藏:0      [点我收藏+]

标签:href   cti   pad   san   isa   sip   gen   设备   3.4   

function  isDevice() {
var sUserAgent = navigator.userAgent.toLowerCase();
var bIsIpad = sUserAgent.match(/ipad/i) == "ipad";
var bIsIphoneOs = sUserAgent.match(/iphone os/i) == "iphone os";
var bIsMidp = sUserAgent.match(/midp/i) == "midp";
var bIsUc7 = sUserAgent.match(/rv:1.2.3.4/i) == "rv:1.2.3.4";
var bIsUc = sUserAgent.match(/ucweb/i) == "ucweb";
var bIsAndroid = sUserAgent.match(/android/i) == "android";
var bIsCE = sUserAgent.match(/windows ce/i) == "windows ce";
var bIsWM = sUserAgent.match(/windows mobile/i) == "windows mobile";
if (bIsIpad || bIsIphoneOs || bIsMidp || bIsUc7 || bIsUc || bIsAndroid || bIsCE || bIsWM) {
window.location.href=‘../mobile/default.html‘;
} else {
window.location.href=‘../pc/index.html‘;
}
}

isDevice() ;

判断设备 进行pc与移动端的页面分流

标签:href   cti   pad   san   isa   sip   gen   设备   3.4   

原文地址:https://www.cnblogs.com/wjhaaa/p/8868152.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!