判断ios还是android
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了判断ios还是android相关的知识,希望对你有一定的参考价值。
$(function(){ var u = navigator.userAgent; var ua = navigator.userAgent.toLowerCase(); var isandroid = u.indexOf(‘Android‘) > -1 || u.indexOf(‘Adr‘) > -1; //android终端 var isios = !!u.match(/\(i[^;]+;( U;)? CPU.+Mac OS X/); //ios终端 if(ua.match(/MicroMessenger/i)=="micromessenger") { //微信内置浏览器+应用宝链接 $(".download a").bind(‘touchstart‘, function (event) { window.location.href=‘http://a.app.qq.com/o/simple.jsp?pkgname=应用名 ‘ }); }else{ if(isiOS){ $(".download a").bind(‘touchstart‘, function (event) { window.location.href=‘https://itunes.apple.com/cn/app/应用名‘ }); }else if(isAndroid){ $(".download a").bind(‘touchstart‘, function (event) { window.location.href=‘http://a.app.qq.com/o/simple.jsp?pkgname=应用名‘ }); }else{ //PC 端 $(".download a").click(function(){ window.location.href=‘应用链接‘ }); } } });
以上是关于判断ios还是android的主要内容,如果未能解决你的问题,请参考以下文章