如何,推文按钮示例代码有帮助吗?

发布于 2024-11-06 11:25:29 字数 404 浏览 0 评论 0原文

我正在尝试从此页面实现一个推文按钮 http://dev.twitter.com/pages/tweet_button

看起来 ti 对我​​来说效果不太好。如果我的网站是 www.xxx.com 脚本应该是:

<a href="http://twitter.com/share?url=http%3A%2F%2Fdev.twitter.com%2Fxxx" class="twitter-share-button">Tweet</a>

图形加载但计数为 0。

我不明白可能出了什么问题。 有什么想法吗?

谢谢

i'm trying to implement a Tweet Button from this page http://dev.twitter.com/pages/tweet_button

and it looks like ti doesn't working very well for me. if my website is www.xxx.com the script should be:

<a href="http://twitter.com/share?url=http%3A%2F%2Fdev.twitter.com%2Fxxx" class="twitter-share-button">Tweet</a>

the graphics load but the count is 0.

i don't understand what could be wrong.
any ideas?

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

奈何桥上唱咆哮 2024-11-13 11:25:29

使用 jQuery 尝试此代码

<img id="tweetButton" style="cursor:pointer;" title="Share this on Twitter" src="http://a3.twimg.com/a/1294785484/images/goodies/tweetn.png" />

$("#tweetButton").click(function () {
            window.open("http://twitter.com/share?url=xxx", "tweet", "status=0,toolbar=0,width=500,height=300");
});

Try this code, using jQuery

<img id="tweetButton" style="cursor:pointer;" title="Share this on Twitter" src="http://a3.twimg.com/a/1294785484/images/goodies/tweetn.png" />

$("#tweetButton").click(function () {
            window.open("http://twitter.com/share?url=xxx", "tweet", "status=0,toolbar=0,width=500,height=300");
});
心作怪 2024-11-13 11:25:29

您需要在 Twitter 开发者网站上注册此功能。一旦你这样做了,它应该会生成某种数字或代码,供你放在页面上,将所有内容链接在一起并开始计数。

You need to go register for this feature on the twitter developers site. Once you do that it should generate some sort of number or code for you to put on your page that will link everything together and start counting as it should.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文