如何添加Facebook共享按钮以共享您嵌入在您网站上的YouTube视频

时间:2011-07-20 11:14:29

标签: html facebook-sharer

我有一个网页,其中嵌入了YouTube视频。我需要在此页面添加一个Facebook分享按钮来分享YouTube视频(不是分享网页,只分享视频)

我添加了以下HTML代码并设法完成它。

<center><div id='pageshare' title='Share This With Your Friends'><div class='sbutton' id='fb'><image src='http://static.ak.fbcdn.net//rsrc.php//v1//yg//r//yZiDLhSvAE9.gif'></image><a name='fb_share' type='box_count' href='http://www.facebook.com/sharer.php?u="+location+"'>Share</a></div></center>

但是它只是添加一个共享按钮的图像,这不是你在其他地方真正看到的。 (此处位置是包含我的YouTube视频网址的变量)

当我使用此代码时

<center><div id='pageshare' title='Share This With Your Friends'><div class='sbutton' id='fb'><a name='fb_share' type='box_count' href='http://www.facebook.com/sharer.php?u="+location+"'>Share</a><script src='http://static.ak.fbcdn.net/connect.php/js/FB.Share?' type='text/javascript'></script></div></center>

我收到了正确的fb分享按钮,但它没有分享视频而是分享我的网页的网址。

有人可以帮我解决这个问题。

提前致谢。

1 个答案:

答案 0 :(得分:1)

你试过这个吗?

<a name="fb_share" type="box_count" href="http://www.facebook.com/sharer.php" rel="nofollow" alt="Share">Share</a>
<script src="http://static.ak.fbcdn.net/connect.php/js/FB.Share" type="text/javascript"></script>