我正在尝试从网站上通过 Share on WhatsApp 提供以下输出:
This is a sentence.
This is another sentence.
使用以下代码:
<a href="whatsapp://send?text=This is a sentence.
This is another sentence." data-action="share/whatsapp/share">Share on WhatsApp</a>
但它给出的输出为:
This is a sentence. This is another sentence.
我如何得到它?
最佳答案
尝试 encoding your string 。您可能正在寻找的字符是 LF line feed
,它对应于 %0A
。也许是这样的:
This%20is%20a%20sentence.%0AThis%20is%20another%20sentence.
关于html - 如何在网站上的 WhatsApp 共享中在段落后添加中断?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/32159931/