javascript – 重定向到appstore或google play [closed]

前端之家收集整理的这篇文章主要介绍了javascript – 重定向到appstore或google play [closed]前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我将以下列格式向我的客户发送该应用的链接

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>
原文链接:https://www.f2er.com/js/153606.html

猜你在找的JavaScript相关文章