菜鸟教程小白 发表于 2022-12-13 07:28:08

ios - 如何从浏览器打开 iOS 应用程序?


                                            <p><p>每当用户在浏览器中打开我的应用程序链接时,我都必须打开我的 iOS 应用程序。我已经使用了类似的 <code>myApp://</code> 但即使用户从浏览器打开 http 链接,我也想打开我的应用程序。就像 pinterest 一样。即使我打开像这样 <code>http://www.pinterest.com/pseudoamber/</code> 这样的常规 http 链接并使用像这样 <code>pinterest://www.pinterest 这样的 URL 方案,Pinterest 也会打开应用程序.com/pseudoamber/</code>。我的应用程序正在 <code>myApp://www.myapp.com</code> 上打开,现在我想在用户打开这样的 http 链接时打开我的应用程序 <code>http://www.myapp.com</code></code></p>

<p>请大家帮忙</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>这里是一个使用 jQuery 的例子:</p>

<pre><code>$(document).ready(function() {

      var user_agent_header = navigator.userAgent;

      if(user_agent_header.indexOf(&#39;iPhone&#39;)!=-1 || user_agent_header.indexOf(&#39;iPod&#39;)!=-1 || user_agent_header.indexOf(&#39;iPad&#39;)!=-1){
            setTimeout(function() { window.location=&#34;myApp://www.myapp.com&#34;;}, 25);
      }

    });
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 如何从浏览器打开 iOS 应用程序?,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/23077411/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/23077411/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 如何从浏览器打开 iOS 应用程序?