0

我正在尝试建立一个推文弹出链接。

我的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

http://jsfiddle.net/yU9pP/1/

如您所见,未使用 data-url如何使用它。?

4

2 回答 2

1

You are not using the complete twitter button, adding the corresponding JS snippet solves the problem and activates the data-url use.

<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="https://platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");</script>

Demo

于 2013-11-02T10:03:11.470 回答
1

我在href中添加了以下内容并且它起作用了......这是这样做的方法吗?

http://twitter.com/share?text=My Text!&url=https://www.google.com
于 2013-11-02T10:10:38.113 回答