如果从移动网站访问,则通知下载本机应用程序

时间:2012-12-03 11:10:59

标签: mobile twitter download notifications native

我现在正在为黑莓,Android和iOS创建原生应用。我也有一个共享相同功能的移动网站。

现在我希望每次用户使用特定设备(如Android或黑莓)访问移动网站时,都会发出下载应用程序的通知(重定向到bb app world或google play store)。我在这里的参考就像推特移动网站一样,当你从黑莓手机访问它时,它会显示通知(带有下载链接和' x'按钮,就像下面的图片一样)。现在我想用javascript检测,好吗?

感谢。

sample notification for blackberry

*我的意思是那个小块"新!下载Twitter ......"

1 个答案:

答案 0 :(得分:1)

来自另一篇文章:


    
      if( /Android|iPhone|BlackBerry/i.test(navigator.userAgent) ) {
      var url=confirm("Would you like to download our mobile application?");
        if (url==true)
      {
        var url = window.location.href = 'http://www.google.com';
        url.show(); 
      }
        else
      {

      }
      }