菜鸟教程小白 发表于 2022-12-12 15:57:20

android - 适用于 iOS 和 Android 的 HTML 中的电话链接


                                            <p><p>在我的网站上,我想集成一个点击调用电话号码。当您点击电话号码(或“立即调用我!”之类的按钮)时,应该会开始通话。</p>

<p>如何在 HTML 中做到这一点?它必须适用于 iOS 和 Android。我需要一个适用于 iOS 和 Android 浏览器的代码。</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>如果你想在应用程序中实现这个,这个:</p>

<p>在android中,你可以这样做来检测PhoneLinks:</p>

<pre><code> webView.setWebViewClient(new WebViewClient() {
            public boolean shouldOverrideUrlLoading(WebView view, String url) {
                if (url.contains(&#34;tel:&#34;)) {
                  if (url.startsWith(&#34;tel:&#34;)) {
                        Intent intent = new Intent(Intent.ACTION_DIAL, Uri.parse(url));
                        startActivity(intent);
                  }
                  return true;
                }
         }
    });
</code></pre>

<p>在IOS中,你可以在UIwebView的属性中启用这个,在Detection里面,有“Phone Numbers”的勾。它会检测到任何电话号码或 phoneLink。</p>

<p>这是你网站上的代码,它会自动触发手机:</p>

<pre><code>&lt;a href=&#34;tel:1-408-555-5555&#34;&gt;1-408-555-5555&lt;/a&gt;
</code></pre>

<p>有关 phoneLinks 的更多信息(适用于两个系统):</p>

<p> <a href="https://developer.apple.com/library/safari/featuredarticles/iPhoneURLScheme_Reference/PhoneLinks/PhoneLinks.html" rel="noreferrer noopener nofollow">https://developer.apple.com/library/safari/featuredarticles/iPhoneURLScheme_Reference/PhoneLinks/PhoneLinks.html</a> </p></p>
                                   
                                                <p style="font-size: 20px;">关于android - 适用于 iOS 和 Android 的 HTML 中的电话链接,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/31913895/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/31913895/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: android - 适用于 iOS 和 Android 的 HTML 中的电话链接