我正在尝试动态添加AddThis工具箱。 Twitter&电子邮件从共享配置文件中接收一些变量,但Facebook Share没有从那里获取信息。
我错过了什么?
HTML:
<span class="toolbox1 addthis_toolbox">
<a class="addthis_button_facebook"></a>
<a class="addthis_button_twitter"></a>
<a class="addthis_button_linkedin"></a>
<a class="addthis_button_email"></a>
</span>
JS:
toolbox_obj = $('.toolbox1').get(0);
addthis.toolbox(toolbox_obj,sharing_config,{title: 'aaa'});
答案 0 :(得分:0)
你可以试试这个
<强> HTML 强>
<span class="toolbox1 addthis_toolbox"></span>
<强> JS 强>
var tbx = $(".toolbox1").get(0),
svcs = {facebook: 'Facebook', twitter: 'Twitter', linkedin:'Linkedin', email: 'Email'};
$.each(svcs, function(k, v){
$('<a></a>', { class:'addthis_button_'+k }).appendTo(tbx);
});
答案 1 :(得分:0)
某些服务,尤其是Facebook和LinkedIn,不使用 我们发送给他们的参数。相反,他们使用元标记来确定 要分享的网址,标题和说明。
某些服务(例如Facebook和Linkedin)只是忽略这些配置信息,因为从Open Graph元标记中获取数据。
因此,您应该将Open Graph元标记添加到HTML中(尝试阅读this useful resource),如果您遇到AJAX加载内容的某些问题,也许您可以通过特定的addthis方法强制url来解决(显然之后)新内容已加载):
addthis.update('share', 'url', window.location.href); // re-parse the url
addthis.ready(); // re-render the buttons.
现在,通过Facebook共享将从页面中打开的Graph元标记中正确获取数据。
这是解决我遇到的类似问题的好资源:
AddThis buttons wont update to include fragment (#Hash Tag)
希望这可以帮助,再见!
答案 2 :(得分:0)
<HEAD>
<script src="http://connect.facebook.net/en_US/all.js#xfbml=1"></script>
<script src="http://static.ak.fbcdn.net/connect.php/js/FB.Share" type="text/javascript"></script>
<meta property="og:title" content="Your Title" />
<meta property="og:type" content="website" />
<meta property="og:image" content="Your Thumbnail Image Link" />
<meta property="og:url" content="Your URL" />
<meta name="description" content="Your Description" />
<HEAD>
<a name="fb_share" type="button_count" href="http://www.facebook.com/sharer.php">Share</a>