0

我一直在看一个名为 TwitThis 的插件,但它是用于在推特上发布您当前所在页面的地址/详细信息。

我想要实现的是相当于:

(显然这只是概念性的,在有人说“你不能像你那样编码!”之前)

<ul>
  <li>Short section of text <tweet button> </li>
  <repeat ad nauseum>
</ul>

按下推文按钮将推文该 HTML 标记的内容

这有点奇怪,我知道。

4

1 回答 1

2

不需要 JS 库。使用Twitter 意图

HTML:

<ul>
    <li><span>some text</span><button>Tweet</button></li>
    <li><span>some other text</span><button>Tweet</button></li>
</ul>​

JavaScript:

$('button').click(function() {
    window.open("https://twitter.com/intent/tweet?text="+$(this).parent().find('span').text());
});​

小提琴

于 2012-05-06T18:13:14.307 回答