6

我有一个网站,上面有一个名为 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 是我要分享的链接。这段代码为我打开了一个分享页面,只分享我的网址而不是我的页面内容。我的内容包括图像、标题和细节(我从数据库表中获取这些值)。请有人帮助我。

4

3 回答 3

2

最后我得到了我的解决方案。这是为我工作的实际代码。我错误地处理了我的链接。应该是这样的

 ?u=http%3A%2F%2Fmywebsite.com%2Fcontent+of+my+page" target="_blank">this link</a>
于 2012-12-07T10:46:33.857 回答
2

看看下面的 OpenGraph 标签:

<meta property="og:title" content="TITLE" /> 
<meta property="og:image" content="URL" /> 
<meta property="og:description" content="DESCRIPTION" /> 
<meta property="og:url" content="URL" />
于 2012-12-07T10:26:40.747 回答
1

This example is using JSP. JS is based on top example.

<a id="fb_link" href="#fb_link" onclick="fbs_click('${product.id}');">Share me on FB</a>

function fbs_click(id) {
var url = 'http://www.facebook.com/sharer.php?u=' +
    encodeURIComponent('https://www.mysite.com.au/product/detail?advertiseId=') + id;
window.open(url, 'Share on FaceBook', 'left=20,top=20,width=550,height=400,toolbar=0,menubar=0,scrollbars=0,location=0,resizable=1');
return false;
}

Have to mention that for some magic reason location=0 doesn't work in my firefox ...

于 2013-05-09T10:29:09.833 回答