點擊圖片,判斷手機操作系統,根據手機系統跳轉不同鏈接。
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;