Twitter推文链接未显示

时间:2013-11-02 09:26:34

标签: javascript html twitter

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

我的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;
  });

问题是当弹出窗口发生时,它只显示文本。 来自teh data-url的网址未显示。我需要在推文链接中显示该网址。

我创建了一个示例jsfiddle

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

您可以看到数据网址未被使用如何使用它。?

2 个答案:

答案 0 :(得分:1)

您没有使用完整的twitter button,添加相应的JS代码段可以解决问题并激活data-url使用。

<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

答案 1 :(得分:1)

我在href中添加了以下内容并且它有效....这是这样做的吗?

http://twitter.com/share?text=My Text!&url=https://www.google.com