如何在基于jQuery的选项卡中加载Javascript?

时间:2011-08-02 10:25:19

标签: javascript jquery

我有Jquery和CSS标签,如this one,在每个标签中我都有facebook feed boxtwitter widget和我博客的排名小部件。但是如果我将这些小部件放在标签区域内容中,则每个小部件都会停止工作。如何在这些jQuery选项卡中加载这些小部件?

我的标签:http://www.sohtanaka.com/web-design/examples/tabs/

1 个答案:

答案 0 :(得分:1)

查看jQuery.getScript

$.getScript('js-url', function(){
    //the loading is completed
    //display button
});

希望这有帮助!

<强>更新

$.getScript('http://platform.twitter.com/widgets.js', function(){ 
   //code 
});

此外,您可以嵌入iframe代码版本的twitter和facebook按钮,而不是每次都加载js代码,例如:

<iframe allowtransparency="true" 
        frameborder="0" 
        scrolling="no" 
        src="http://platform.twitter.com/widgets/tweet_button.html" 
        style="width:130px; height:50px;"></iframe>