`
suko
  • 浏览: 73126 次
  • 性别: Icon_minigender_1
  • 来自: 富安
社区版块
存档分类
最新评论

js判断手机系统类型

阅读更多
function checkOSType(){
        var ua = navigator.userAgent.toLowerCase();	
		if (/iphone|ipad|ipod/.test(ua)) {
		        alert("iphone");
		} else if (/android/.test(ua)) {
			alert("android");
		}
	}
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics