iPhone URL Schema阻止safari错误警报

时间:2013-09-11 06:26:20

标签: iphone ios safari url-scheme

我尝试打开我的应用程序,如果从safari浏览器安装在iPhone中,只需传递myApp:// using javascript document.location="myApp://";,如果没有重定向到另一个网页以显示应用程序详细信息。但是当app没有安装safari时抛出“无法打开页面”警告,如果重定向到另一个网页那个时候也会自动提醒警报框。     如果没有在设备上安装app,任何人都可以帮助我重新定位没有safari的网页无法打开页面提醒。

我的代码: 简单的html文件和正文onload="checkdevice();return false;" 在textarea "document.getElementById('txtMsg').value"

中显示消息
function checkdevice() Check browser detection
{
    if((navigator.userAgent.match(/iPhone/)) || (navigator.userAgent.match(/iPad/)) || (navigator.userAgent.match(/iPod/)))
    {

        document.getElementById('txtMsg').value ="Running on iPhone /iPod /iPad Device";
        checkAppExists();
        return true;
    }
    else
    {
        document.getElementById('txtMsg').value ="Please run this page on iPhone / iPod / iPad Device";
        checkAppExists();
        return false;
    }
}



function checkAppExists() 
{

    var time = (new Date()).getTime();
    window.location="myApp://";
    setTimeout(function(){

         var now = (new Date()).getTime();

     if((now-time)< 400) 
         {
            window.location="http://mydomin.com/appdetails.html";
         }
       else
       {
            document.getElementById('txtMsg').value ="App Installed"; * App will launch here *
       }

    },300);

}

0 个答案:

没有答案