js 检测不同设备
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
/* 是否是android */
function
isAndroid(){
var
userAgent = window.navigator.userAgent;
if
(/android/i.test(userAgent)) {
return
true
;
}
return
false
;
};
/* 是否是IOS */
function
isIOS(){
var
userAgent = window.navigator.userAgent;
if
(/iphone|ipad|ipod/i.test(userAgent)) {
return
true
;
}
return
false
;
};
/* 是否是微信 */
function
isWeiXin(){
var
userAgent = window.navigator.userAgent;
if
(/micromessenger/i.test(userAgent)) {
return
true
;
}
return
false
;
}
|