我发现这个javascript来检测黑莓设备:
<script type="text/javascript">
var ua = navigator.userAgent;
if (ua.indexOf("BlackBerry") >= 0) {
if (ua.indexOf("Version/") >= 0) { // ***User Agent in BlackBerry 6 and BlackBerry 7
Verposition = ua.indexOf("Version/") + 8;
TotLenght = ua.length;
document.write("Jorgesys BB OS Version :: " + ua.substring(Verposition, Verposition + 3));
}
else {// ***User Agent in BlackBerry Device Software 4.2 to 5.0
var SplitUA = ua.split("/");
document.write("Jorgesys BB OS Version :: " + SplitUA[1].substring(0, 3));
}
}
</script>
但需要定位支持的特定BlackBerry:
黑莓:
9630
9700
8900
9000
这可能只针对那些黑莓手机吗?
感谢!
答案 0 :(得分:2)
是的,每个代理商都有黑莓版本。
例:
**BlackBerry9000**/5.0.0.93 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/179
使用简单的正则表达式来获取版本。
<script type="text/javascript">
var ua = "BlackBerry9000/5.0.0.93 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/179";
var match = ua.match(/^BlackBerry[0-9]*/);
console.log(match[0]);
var ua = "Mozilla/5.0 (BlackBerry; U; BlackBerry 9700; en-US) AppleWebKit/534.11+ (KHTML, like Gecko) Version/X.X.X.X Mobile Safari/534.11+";
var match = ua.match(/BlackBerry\s[0-9]*/);
console.log(match[0]);
var ua = "Mozilla/5.0 (PlayBook; U; RIM Tablet OS 1.0.0; en-US) AppleWebKit/534.8+ (KHTML, like Gecko) Version/0.0.1 Safari/534.8+";
var match = ua.match(/RIM Tablet OS\s[0-9].[0-9].[0-9]/);
console.log(match[0]);
</script>