更改Twitter'分享按钮的网址'

时间:2017-12-08 08:11:32

标签: html url twitter

我想在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>

enter image description here

1 个答案:

答案 0 :(得分:1)

希望这就是你在寻找的地方。如果您要发布带有url的推文,可以转到链接id的页面的某个部分,但是对于twiiter,您无法在#中使用url,操纵#标签使用以下内容。

添加:%23 作为标记

&#13;
&#13;
<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;
&#13;
&#13;

运行代码snippt,右键单击&#34; Tweet&#34;和open link in new tab。您将看到添加了#标记的网址。