如何在我的网站内使用 jquery 将推文发送到 twitter

发布于 2024-12-09 21:05:40 字数 439 浏览 1 评论 0原文

有许多 API、脚本和插件可以从 Twitter 获取提要、哈希标签和推文。我喜欢用 jquery 从我的网站发送推文到 twitter

之类的东西

$('#somebutton').click( function (){

var text='some intelligent things to say';
#.twitit(text);

})

,这可能吗?

现在我使用 :

<a href="https://twitter.com/share" class="twitter-share-button" data-count="vertical">Tweet it</a></div>

但这需要页面标题将其发送到 Twitter.. 这并不是我想要的!

There is MANY API and script and plugin out there to get feed, hash tag and tweet from twitter. I like to SEND tweet TO twitter from my site with jquery

something like

$('#somebutton').click( function (){

var text='some intelligent things to say';
#.twitit(text);

})

it's it something possible ?

now i use :

<a href="https://twitter.com/share" class="twitter-share-button" data-count="vertical">Tweet it</a></div>

but that take the title of the page to send it to twitter.. not really what i want !

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

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

发布评论

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

评论(2

一袭水袖舞倾城 2024-12-16 21:05:40

问题所在:

<a href="https://twitter.com/share" class="twitter-share-button" data-text="Something other than page title" data-count="vertical">Tweet it</a></div>

您甚至可以通过以下方式动态设置它:

$('.twitter-share-button').attr('data-text', 'Some text to tweet');

更新:如果您只是尝试使用自己的 Twitter 按钮,则可以简单地使用 Web 意图,这是 Twitter 表达“常规旧 URL”的奇特方式”。请参阅: https://dev.twitter.com/docs/intents

https://twitter.com/intent/tweet?url=[your URL]&text=[some text to tweet]

因为它是 URL 的一部分,确保对所有参数进行 urlencode。

What's wrong with:

<a href="https://twitter.com/share" class="twitter-share-button" data-text="Something other than page title" data-count="vertical">Tweet it</a></div>

You can even set it dynamically via:

$('.twitter-share-button').attr('data-text', 'Some text to tweet');

UPDATE: If you're just trying to use your own Twitter button, you can simply use web intents, Twitter's fancy way of saying "regular old URLs". See: https://dev.twitter.com/docs/intents

https://twitter.com/intent/tweet?url=[your URL]&text=[some text to tweet]

Since it's part of a URL, make sure you urlencode all the parameters.

遗忘曾经 2024-12-16 21:05:40

这是我找到的一些示例代码...
我还有那个丑陋的推特大按钮!

<script>
$(document).ready(function(){
    $('a[data-text]').each(function(){
      $(this).attr('data-text', "This works!");
    });
    $.getScript('http://platform.twitter.com/widgets.js');
});
</script>

<a href="http://twitter.com/share"
    class="twitter-share-button"
    data-text="This is what we want to change dynamically"
    data-count="none" data-via="chris_camps">Tweet</a>
<!-- moved to the js above <script type="text/javascript"
    src="http://platform.twitter.com/widgets.js"></script> -->

here is some sample code i have found...
I still have the big ugly twitter button !

<script>
$(document).ready(function(){
    $('a[data-text]').each(function(){
      $(this).attr('data-text', "This works!");
    });
    $.getScript('http://platform.twitter.com/widgets.js');
});
</script>

<a href="http://twitter.com/share"
    class="twitter-share-button"
    data-text="This is what we want to change dynamically"
    data-count="none" data-via="chris_camps">Tweet</a>
<!-- moved to the js above <script type="text/javascript"
    src="http://platform.twitter.com/widgets.js"></script> -->
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文