0

我正在使用以下代码在 facebook 墙上发布,它工作正常,但我需要在成功发布后回电。

<html xmlns="http://www.w3.org/1999/xhtml" xmlns:fb="https://www.facebook.com/2008/fbml">

<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;
}

<style> html .fb_share_button { display: -moz-inline-block; display:inline-block; padding:1px 20px 0 5px; height:15px; border:1px solid #d8dfea; background:url(http://static.ak.facebook.com/images/share/facebook_share_icon.gif?6:26981) no-repeat top right; } html .fb_share_button:hover { color:#fff; border-color:#295582; background:#3b5998 url(http://static.ak.facebook.com/images/share/facebook_share_icon.gif?6:26981) no-repeat top right; text-decoration:none; } </style>


<a rel="nofollow" href="http://www.facebook.com/share.php?u=<;url>" class="fb_share_button" onclick="return fbs_click()" target="_blank" style="text-decoration:none;">Share</a>

成功发布后我需要一个警报,不需要获取用户 ID 或任何东西。

但我需要一个帖子或分享选项,因为如果我的页面上有喜欢按钮,那么他们就不能更喜欢它了。我需要用户多次发布我的链接。

谢谢。

4

0 回答 0