为什么Twitter共享代码不会在共享对话框中显示网址?

时间:2016-10-17 13:46:44

标签: php twitter

为什么Twitter共享代码不会在共享对话框中显示网址?

在我的服务器上,加载页面test.php,然后点击链接(twitter徽标)在Twitter分享对话框中,它将仅显示文字:My Text为什么不显示网址? 但是当我在网上测试代码时:

http://www.htmlgoodies.com/introduction/about/article.php/3894201/New-on-HTMLGoodies-Test-Your-HTML.htm

它会显示包含网址的文字。为什么我的服务器上没有显示URL?我怎么能这样做?

这是我的代码test.php

<!DOCTYPE html>
<html>
<head>
<script type="text/javascript" src="//code.jquery.com/jquery-1.10.1.js"></script>
<script type="text/javascript">
$(window).load(function(){
  $('.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;
  });
});
</script>
</head>
<body>
<a class="twitter-share-button shareButton twitter popup" href="http://twitter.com/share?text=My Text" data-text="My Text" data-count="none" data-url="https://www.stackoverflow.com">
<img src="http://i.imgur.com/ywWtzx8.png" alt="">
</a> 
</body>
</html>

0 个答案:

没有答案