var u = navigator.userAgent;
var isAndroid = u.indexOf('Android') > -1 || u.indexOf('Adr') > -1; //android终端var isiOS = !!u.match(/\(i[^;]+;( U;)? CPU.+Mac OS X/); //ios终端
var isWindows =/windows|win32/i.test(navigator.userAgent);
// alert('是否是Android:'+isAndroid); alert('是否是iOS:'+isiOS);document.getElementById('downloadNow').οnclick=function(){
if(isAndroid){ //是androidwindow.location.href = 'http://www.hao123.com';
}else if(isiOS){ //是ios
window.location.href = 'http://www.hao123.com';
}else if(isWindows){ //windows
window.location.href = 'http://www.hao123.com';
}else{ //啥都不是
window.location.href= 'http://www.hao123.com';
}
};