判断手机还是电脑html自动切花,JS判断客户端是手机还是PC的2个代码

1、第一种:

function IsPC() {

var userAgentInfo = navigator.userAgent;

var Agents = ["Android", "iPhone",

"SymbianOS", "Windows Phone",

"iPad", "iPod"];

var flag = true;

for (var v = 0; v < Agents.length; v++) {

if (userAgentInfo.indexOf(Agents[v]) > 0) {

flag = false;

break;

}

}

return flag;

}

2、第二种:

function browserRedirect() {

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=B页面;

}

}

browserRedirect();

百度的判断代码

function uaredirect(f) {

try {

if (document.getElementById("bdmark") != null) {

return

}

var b = false;

if (arguments[1]) {

var e = window.location.host;

var a = window.location.href;

if (isSubdomain(arguments[1], e) == 1) {

f = f + "/#m/" + a;

b = true

} else {

if (isSubdomain(arguments[1], e) == 2) {

f = f + "/#m/" + a;

b = true

} else {

f = a;

b = false

}

}

} else {

b = true

}

if (b) {

var c = window.location.hash;

if (!c.match("fromapp")) {

if ((navigator.userAgent.match(/(iPhone|iPod|Android|ios|SymbianOS)/i))) {

location.replace(f)

}

}

}

} catch(d) {}

}

function isSubdomain(c, d) {

this.getdomain = function(f) {

var e = f.indexOf("://");

if (e > 0) {

var h = f.substr(e + 3)

} else {

var h = f

}

var g = /^www\./;

if (g.test(h)) {

h = h.substr(4)

}

return h

};

if (c == d) {

return 1

} else {

var c = this.getdomain(c);

var b = this.getdomain(d);

if (c == b) {

return 1

} else {

c = c.replace(".", "\\.");

var a = new RegExp("\\." + c + "$");

if (b.match(a)) {

return 2

} else {

return 0

}

}

}

};

使用方法:

另外一篇,感觉不如上面的好,不过大家可以参考下

var browser_class = navigator.userAgent;

var browser_class_name1 = browser_class.match("Mobile");

var browser_class_name2 = browser_class.match("mobile");

var location_url = window.location.href;

if (browser_class_name1 != null || browser_class_name2 != null) {

if (location_url.match("wap") == null) {

window.location.href = "http://wap.xxxx.com";

}

} else {

if (location_url.match("3g") != null || location_url.match("wap") != null) {

window.location.href = "http://wap.xxxx.com";

}

}

这篇文章就介绍到这了,具体的也可以参考下面的文章。

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值