我想在Twitter"分享按钮"中添加URL
。它指向目标页面的一部分。
我正在使用此代码:
<div>
<a class="twitter-share-button" href="https://twitter.com/intent/tweet?text=The process...random text. mezet.xyz/dl18/manifesto/#section" data-size="large">
Tweet</a>
</div>
答案 0 :(得分:1)
希望这就是你在寻找的地方。如果您要发布带有url
的推文,可以转到链接id
的页面的某个部分,但是对于twiiter,您无法在#
中使用url
,操纵#标签使用以下内容。
添加:%23 作为#标记
<div>
<a class="twitter-share-button" href="https://twitter.com/intent/tweet?text=The process...of this is just total dummy text to test if i can manupilate the url. http://mezet.xyz/dl18/manifesto/%23priorities-section " data-size="large">Tweet</a>
</div>
&#13;
运行代码snippt,右键单击&#34; Tweet&#34;和open link in new tab
。您将看到添加了#标记的网址。