我将以下列格式向我的客户发送该应用的链接
http://goo.gl.com/downloadtheapp(或任何)
我想要这个文件在我的服务器上,包括java脚本代码,检查什么是设备类型,并重定向到方便的商店.也就是说,如果设备是基于Android的,那么谷歌播放,如果设备是基于ios的,则是appstore.
到现在为止,我试过了,但不行.
<html> <head> <script type="text/javascript"> $(document).ready(function () { if(navigator.userAgent.toLowerCase().indexOf("android") > -1) { window.location.href = 'http://play.google.com/store/apps/details?id=com.truecaller&hl=en'; } if(navigator.userAgent.toLowerCase().indexOf("iphone") > -1) { window.location.href = 'http://itunes.apple.com/lb/app/truecaller-caller-id-number/id448142450?mt=8'; } } </javascript> </head> <body> </body> </html>
解决方法
问题在于您的脚本标签,而您缺少);
顺便说一句,你改进了jquery?
<script src="http://code.jquery.com/jquery-latest.min.js" type="text/javascript"></script> <script> $(document).ready(function (){ if(navigator.userAgent.toLowerCase().indexOf("android") > -1){ window.location.href = 'http://play.google.com/store/apps/details?id=com.truecaller&hl=en'; } if(navigator.userAgent.toLowerCase().indexOf("iphone") > -1){ window.location.href = 'http://itunes.apple.com/lb/app/truecaller-caller-id-number/id448142450?mt=8'; } }); </script>