我正在尝试建立一个推文弹出链接。
我的html代码如下
<p class="col-xs-5 col-xs-offset-1" id="custom-tweet-button">
<a class="twitter-share-button shareButton twitter popup" href="http://twitter.com/share?text=My Custom text" data-text="My Custom text" data-count="none" data-url="https://www.google.com">
<img src="32399/images/social/tweet2.png" alt="" />
</a>
</p>
javascript代码是
$('.popup').click(function(event) {
var width = 575,
height = 400,
left = ($(window).width() - width) / 2,
top = ($(window).height() - height) / 2,
url = this.href,
opts = 'status=1' +
',width=' + width +
',height=' + height +
',top=' + top +
',left=' + left;
window.open(url, 'twitter', opts);
return false;
});
问题是当弹出窗口发生时,它只显示文本。数据 URL 中的 URL 未显示。我也需要在推文链接中显示 URL。
我创建了一个示例 jsfiddle
如您所见,未使用 data-url如何使用它。?