Whatsapp 链接
Whatsapp linking
我目前正在为客户开发一个网站,但在使用 whatsapp link 在 Iphone 上运行时遇到了一些问题。有一个按钮应该将用户重定向到一个 whatsapp 号码,它正在我的电脑上这样做,但是当我把它带到我的 iphone 时突然它不再工作了。对正在发生的事情有什么想法吗?
<a id="app" target="_blank" href="https://wa.me/0896168600?text=I'm%20interested%20in%20man%20with%20a%20van"> <div class="whatsapp">
<div class="left">
<p>Contact on WhatsApp</p>
<p>089 61 68 600</p>
</div>
<div class="right">
<img src="/WhatsApp.svg.png" alt="">
</div>
</div>
</a>
这里有一些实际问题的图片以及 link 网站和用于编写代码的 whatsapp 文档。
https://i.stack.imgur.com/YW5nW.png
https://faq.whatsapp.com/iphone/how-to-link-to-whatsapp-from-a-different-app/?lang=en
https://fiverrtestsite.netlify.app/
请在手机上试试这个
所以对于丹麦数字 +45 1234 5678 它将是
4512345678
将 45 更改为您的国家代码
<a id="app" target="_blank" href="whatsapp://send?phone=4512345678"> </a>
或
<a id="app" target="_blank" href="https://api.whatsapp.com/send?phone=4512345678"> </a>
这仅适用于移动设备,不适用于桌面设备。您应该制作一个模式,以便在点击时他们可以选择打开 link.
的移动版或桌面版
我目前正在为客户开发一个网站,但在使用 whatsapp link 在 Iphone 上运行时遇到了一些问题。有一个按钮应该将用户重定向到一个 whatsapp 号码,它正在我的电脑上这样做,但是当我把它带到我的 iphone 时突然它不再工作了。对正在发生的事情有什么想法吗?
<a id="app" target="_blank" href="https://wa.me/0896168600?text=I'm%20interested%20in%20man%20with%20a%20van"> <div class="whatsapp">
<div class="left">
<p>Contact on WhatsApp</p>
<p>089 61 68 600</p>
</div>
<div class="right">
<img src="/WhatsApp.svg.png" alt="">
</div>
</div>
</a>
这里有一些实际问题的图片以及 link 网站和用于编写代码的 whatsapp 文档。
https://i.stack.imgur.com/YW5nW.png
https://faq.whatsapp.com/iphone/how-to-link-to-whatsapp-from-a-different-app/?lang=en
https://fiverrtestsite.netlify.app/
请在手机上试试这个
所以对于丹麦数字 +45 1234 5678 它将是 4512345678 将 45 更改为您的国家代码
<a id="app" target="_blank" href="whatsapp://send?phone=4512345678"> </a>
或
<a id="app" target="_blank" href="https://api.whatsapp.com/send?phone=4512345678"> </a>
这仅适用于移动设备,不适用于桌面设备。您应该制作一个模式,以便在点击时他们可以选择打开 link.
的移动版或桌面版