原生JS判断手机系统

点击图片,判断手机操作系统,根据手机系统跳转不同链接。

function imgHref(){
	var userAgent = navigator.userAgent;
	var isAndroid = userAgent.indexOf('Android') > -1 || userAgent.indexOf('Adr') > -1; //android终端
	var isiOS = !!userAgent.match(/(i[^;]+;( U;)? CPU.+Mac OS X/); //ios终端
	if(isAndroid){
		// 安卓
		window.location.href ="http://shouji.baidu.com/software/...";
	}else if(isiOS){
		// ios
		window.location.href="https://itunes.apple.com/cn/app/...";
	}
};
var img_href = document.getElementById('href');
img_href.onclick = imgHref;
原文地址:https://www.cnblogs.com/jessie-xian/p/11596087.html