为什么Twitter共享代码不会在共享对话框中显示网址?
在我的服务器上,加载页面test.php
,然后点击链接(twitter徽标)在Twitter分享对话框中,它将仅显示文字:My Text
为什么不显示网址?
但是当我在网上测试代码时:
它会显示包含网址的文字。为什么我的服务器上没有显示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>