2

我想在 twitter 引导模式上显示 share-this 小部件,但是代码说要执行以下操作:

<span class='st_facebook_hcount' displayText='Facebook'></span>
<span  class='st_twitter_hcount' displayText='Tweet'></span>
<span class='st_plusone_hcount' displayText='Google +1'></span>
<span  class='st_email_hcount' displayText='Email'></span>

所以我所做的是在引导程序的showed.bs.modal 事件中我有:

var switchTo5x=true;
    $.getScript("http://w.sharethis.com/button/buttons.js", function(){
        stLight.options({publisher: "c68c8f6c-c670-419b-b8e2-23772e22a861", doNotHash: false, doNotCopy: false, hashAddressBar: false, popup: 'true'});

    });

但是,下次我打开不同的模式时,不会加载此共享按钮。我认为这是因为 getScript 已经存在?

4

1 回答 1

4

打开新模态后试试这个:

stButtons.locateElements();

它将寻找新按钮并将其实例化。

编辑:show.bs.modal事件来处理它

$('#myModal').on('show.bs.modal', function () {
  stButtons.locateElements();
})

Edit2:好的,在阅读了您的评论后,我认为最终的解决方案是:

var switchTo5x=true;
    $.getScript("http://w.sharethis.com/button/buttons.js", function(){
        stLight.options({publisher: "c68c8f6c-c670-419b-b8e2-23772e22a861", doNotHash: false, doNotCopy: false, hashAddressBar: false, popup: 'true'});
        stButtons.locateElements();
    });
于 2013-12-05T10:00:36.430 回答