我在此网站页脚中使用共享按钮。 whatsapp按钮在除页面http://gnr.richkid.co.il/he/catalog/a/item/?ItemID=etc .....
之外的所有页面中都能正常工作如果您将Chrome中的用户代理更改为移动设备(如iPhone,Galaxy等),则可以在页脚中看到按钮。
只是不要打开whatsapp。
a href代码:
<li>
<a class="wa_btn wa_btn_l" href="whatsapp://send?text=גלשתי באתר הגלריה - בית לאירועים באזור השרון: http://gnr.richkid.co.il/he/catalog/a/item/Default.aspx?ItemID=268" data-text="share" data-href="http://gnr.richkid.co.il/he/catalog/a/item/Default.aspx?ItemID=268" target="_top">
<i class="fa fa-whatsapp fa-2x"></i>
</a>
</li>
有什么问题?我应该修理什么?
非常感谢, Liron。
答案 0 :(得分:2)
在href中使用之前,您没有对字符串进行编码。
查看我的http://madole.github.io/blog/2015/06/18/mobile-browser-sharing-to-whatsapp-native-app/教程。
基本上,在将字符串放入href之前,请在字符串上使用encodeURIComponent()。