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('iPhone')!=-1 || user_agent_header.indexOf('iPod')!=-1 || user_agent_header.indexOf('iPad')!=-1){
setTimeout(function() { window.location="myApp://www.myapp.com";}, 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]