12

我想使用 JavaScript 将 URL 更改为动态的FB:Like按钮。

现在我只能更改标签的href属性fb:like(我已经粘贴了下面的代码)。但简单地改变href似乎不起作用。也许我必须重新启动 FB:Like 按钮,但到目前为止我无法弄清楚如何..

function update_share(container, url) {
  // update fb:like href value
  var container = container[0] || document.body;
  var button = container.getElementsByTagName('fb:like');
  button[0].setAttribute('href', url);
}
4

4 回答 4

24

它也适用于 XFBML 标记,而无需使用 FB iframe,甚至适用于多个 FB,例如对 AJAX 的调用。

您只需将整个 XFBML 代码包装在 JS/jQuery 中并解析它,如下所示:

$('#like').html('<fb:like href="' + url + '" layout="button_count" show_faces="false" width="65" action="like" font="segoe ui" colorscheme="light" />');
if (typeof FB !== 'undefined') {
    FB.XFBML.parse(document.getElementById('like'));
}

HTML 代码:

<span id="like"></span>
于 2010-11-15T08:03:06.077 回答
9

对于重新初始化社交按钮,我使用以下代码:

//Facebook like
if(typeof(FB) !== 'undefined')
     FB.XFBML.parse(document.getElementById('fblike'));

//Google plus one
if(typeof(gapi) !== 'undefined') {
    gapi.plusone.render(document.getElementById('gplus'),{
        'href':location.href,
        'annotation':'bubble',
        'width': 90,
        'align': 'left',
        'size': 'medium'
    });
}

//Twitter tweet button
if(typeof(twttr) !== 'undefined') {
    $('.twitter-share-button').attr('data-url',location.href);
    twttr.widgets.load();
}

使用这样的html代码:

<div style="float:left;margin-top: 5px;width:80px;">
    <div id="gplus" class="g-plusone" data-size="medium"></div>
</div>
<div style="float:left;margin-top:5px;width:90px;">
    <a href="https://twitter.com/share" class="twitter-share-button">Tweet</a>
</div>
<div style="float:left;margin-top:5px;width:80px;" id="fblike">
    <fb:like send="false" layout="button_count" width="100" show_faces="false"></fb:like>
</div>
于 2011-12-25T10:39:55.917 回答
9

代替您的 fb:like 对象,在您的 html 中编写一个 FB iframe,如下所示:

<iframe id="face" name="face" src="http://www.facebook.com/plugins/like.php?href=http://www.google.fr&layout=button_count&show_faces=false&width=400&action=like&font=arial&colorscheme=light" allowtransparency="true" style="border: medium none; overflow: hidden; width: 400px; height: 21px;" frameborder="0"scrolling="no"></iframe>

现在你可以用这个函数用 JavaScript 改变:

function setUrl(url)
{
    sUrl = url;
    url = "http://www.facebook.com/plugins/like.php?href="+sUrl+"&layout=button_count&show_faces=false&width=400&action=like&font=arial&colorscheme=light";
    document.getElementById('face').setAttribute('src', url);
    //alert("url : "+url);
}

当您更改 src 时,FB iframe 会更新。

于 2010-08-27T18:09:20.403 回答
3

我想你有几个选择...

  1. 移除元素,构建并附加 XFBML 字符串,然后解析父对象 XFBML.parse 调用。

  2. 删除元素或其容器,构建并附加一个实际的 XFBML 对象使用

  3. 构建一个 iframe 容器,从父页面传入类似 url(带有 GET)。如果您可以在 JS 中获取查询字符串,您甚至可以不使用真正的后端来执行此操作。然后在初始化 facebook SDK 之前构建标记,然后类似按钮就会呈现。无论如何,Facebook 都会对他们所有的东西进行 iframe,所以这种方法并不像听起来那么笨拙。试过这个,效果很好。

于 2010-05-06T07:07:35.433 回答