JS读取UserAgent信息并做判断

userAgent信息可以由navigator.userAgent拿到。
例子:


\<\script type="text/javascript"\>
document.writeln("navigator.userAgent: " + navigator.userAgent + "
"
);
document.writeln("navigator.appName: " + navigator.appName + "
"
);
document.writeln("navigator.appCodeName: " + navigator.appCodeName + "
"
);
document.writeln("navigator.appVersion: " + navigator.appVersion + "
"
);
document.writeln("navigator.appMinorVersion: " + navigator.appMinorVersion + "
"
);
document.writeln("navigator.platform: " + navigator.platform + "
"
);
document.writeln("navigator.cookieEnabled: " + navigator.cookieEnabled + "
"
);
document.writeln("navigator.onLine: " + navigator.onLine + "
"
);
document.writeln("navigator.userLanguage: " + navigator.userLanguage + "
"
);
document.writeln("navigator.mimeTypes[1].description: " + navigator.mimeTypes[1].description + "
"
);
document.writeln("navigator.mimeTypes[1].type: " + navigator.mimeTypes[1].type + "
"
);
document.writeln("navigator.plugins[3].description: " + navigator.plugins[3].description + "
"
);
\

如果想来判断其中内容,可以用
navigator.userAgent.match()或navigator.userAgent.indexOf()来判断
前者一般是用来判断手机客户端,例如navigator.userAgent.match(/iPhone/i) , navigator.userAgent.match(/Safari/i)
后者用来变向判断userAgent字符串中某值是否存在,例如 navigator.userAgent.indexOf("iPhone OS 4_0_2") !=-1


\<\script type="text/javascript"\>
var useHTML5 = 1;

if(navigator.userAgent.indexOf("iPhone OS 4_0_2") !=-1)
{
useHTML5=2;
}

document.write("Value is:
"
);
document.write(useHTML5);

\

所以它经常会用来判断浏览器类型,如navigator.userAgent.indexOf("Firefox")>0

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值