wap页点击下载APP在华为G9浏览器不能下载刚开始以为是windows.href不能用,测试发现是内核问题
使用navigator.userAgent.toLowerCase()获取浏览器内核信息
ios显示
安卓显示
华为 G9显示
原始代码
$('.download').click(function(){var ua = navigator.userAgent.toLowerCase();if (/iphone|ipad|ipod/.test(ua)) {window.location ='https://itunes.apple.com/cn/app/%E7%9B%B4%E6%8E%A5%E6%8D%9E/id1133780608?mt=8'} else if (/android/.test(ua)||/windows/.test(ua)) {window.location ='http://static.16qs.com/app/apks/16qingsu-1.1.0-official.apk'}
})
修改后的代码
$('.download').click(function(){var ua = navigator.userAgent.toLowerCase();if (/iphone|ipad|ipod/.test(ua)) {window.location ='https://itunes.apple.com/cn/app/%E7%9B%B4%E6%8E%A5%E6%8D%9E/id1133780608?mt=8'} else if (/android/.test(ua)||/windows/.test(ua)) {window.location ='http://static.16qs.com/app/apks/16qingsu-1.1.0-official.apk'}
})