标签:android class blog c code java
1
2
3
4
5
6
7
8
9
10 |
function
isMobile() { //sniff a mobile browser if
(navigator.userAgent.match(/Android/i) || navigator.userAgent.match(/webOS/i) || navigator.userAgent.match(/iPad/i) || navigator.userAgent.match(/iPhone/i) || navigator.userAgent.match(/iPod/i) ) { return
true ; } } |
sniff a mobile browser,布布扣,bubuko.com
标签:android class blog c code java
原文地址:http://www.cnblogs.com/skynetfy/p/3737126.html