我正在使用 span 标签在按钮单击时将 sharethis 按钮加载到 fancybox 中:
<div style="display:none">
<div class="social-share">
<span class='st_facebook_vcount' displayText='Facebook'></span>
<span class='st_twitter_vcount' displayText='Tweet'></span>
<span class='st_pinterest_vcount' displayText='Pinterest'></span>
</div>
</div>
我的问题是:
如何根据单击的按钮更改 st_title 或设置共享内容的标题。例如,我的页面基本上每个帖子都有一个分享按钮,所以如果我想制作一个这样的按钮:
<a class="share-btn" href="#" data-title="First Post">Share This</a>
然后尝试在这里做一些事情:
$('a.share-btn').on('click', function(e){
//Change shared title
//launch fancybox containing share <span>'s mentioned above
}