无论如何,在同一页面上添加多个推文按钮并拥有自己的推文计数

时间:2011-04-29 20:44:38

标签: twitter

我正在考虑设置一些推文按钮,让人们使用#anchor标签推文发表长篇文章的各个部分

例如像这样的网址

http://www.w3schools.com/html_links.htm#tips
http://www.w3schools.com/html_links.htm#questions

每个锚标记旁边都会有一个推文按钮

这是否可行,每个推文按钮在各自的按钮上都有自己独特的Count?

例如

<a href="http://twitter.com/share" class="twitter-share-button" data-url="http://www.w3schools.com/html_links.htm#tips" data-text="I have Tweeted the Tips Link" data-count="horizontal">Tweet</a><script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script>

<a href="http://twitter.com/share" class="twitter-share-button" data-url="http://www.w3schools.com/html_links.htm#questions" data-text="I have Tweeted the Questions Link" data-count="horizontal">Tweet</a><script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script>

非常感谢提前

干杯 安迪

2 个答案:

答案 0 :(得分:4)

Twitter忽略了#fragments的推文按钮数量,因此链接到单个页面的多个部分的多个推文按钮都将具有相同的计数。您可以在具有不同计数的单个页面上具有多个推文按钮,但它们必须位于单独的页面之外。例如,example.com的博客可能有两个不同计数的推文按钮,但它们必须用于:

example.com/1
example.com/2

答案 1 :(得分:0)

解决方法是使用GET值。你可以使用这种网址作为高音按钮:

http://www.w3schools.com/html_links.htm?anchor=tips
http://www.w3schools.com/html_links.htm?anchor=questions

然后,当用户来自tweeter时,你会添加一些JS来跳转到锚点。