本文主要是介绍华为 G9浏览器点击不能下载APP,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
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'}
})
这篇关于华为 G9浏览器点击不能下载APP的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!