我有一个网站,上面有一个名为 share 的 facebook 按钮。我希望当用户单击该按钮时,我的网页内容应该在他的墙上共享。我的代码在页面的 head 标签中是这样的:
<script>
function fbs_click(){
u = location.href;
t = document.title;
window.open('http://www.facebook.com/sharer.php?u='+encodeURIComponent(u)+'&t='+encodeURIComponent(t),'sharer','toolbar=0,status=0,width=626,height=436');
return false;
}
</script>
我也知道u= url
您的内容页面t= title
或网站名称,这是在正文标签内:
<a rel="nofollow" href="http://www.facebook.com/share.php?u=http://lums.edu.pk/event-detail/lecture-on-citation-management-and-referencing-1133"
class="fb_share_button" onclick="return fbs_click()" target="_blank"
style="text-decoration:none;">Share</a>
?u 是我要分享的链接。这段代码为我打开了一个分享页面,只分享我的网址而不是我的页面内容。我的内容包括图像、标题和细节(我从数据库表中获取这些值)。请有人帮助我。