如果不存在,如何动态加载jquery库?

时间:2012-05-30 07:10:00

标签: jquery load cycle

我知道,感谢这个tutorial,如果主机网站没有它,如何动态加载jQuery(例如调用<script src="/widget/widget.js?type=normal" type="text/javascript"></script>):

(function () {
    var jQuery;

    if (window.jQuery === undefined || window.jQuery.fn.jquery !== '1.4.2') {
        var script_tag = document.createElement('script');
        script_tag.setAttribute("type", "text/javascript");
        script_tag.setAttribute("src", pathWidget + "/scripts/jquery-1.7.min.js");

        if (script_tag.readyState) {
            script_tag.onreadystatechange = function () { // For old versions of IE
                if (this.readyState == 'complete' || this.readyState == 'loaded') {
                    scriptLoadHandler();
                }
            };
        } else {
            script_tag.onload = scriptLoadHandler;
        }
        (document.getElementsByTagName("head")[0] || document.documentElement).appendChild(script_tag);
    } else {
        jQuery = window.jQuery;
        main();
    }

    function scriptLoadHandler() {
        jQuery = window.jQuery.noConflict(true);
        main();
    }

    function main() {
        jQuery(document).ready(function ($) {

        });
    }
})();

好吧,现在我想为jquery库做同样的事情。我们来说是jQuery Cycle。

我试过了:

var script_cycle = document.createElement('script');
script_cycle.setAttribute("type", "text/javascript");
script_cycle.setAttribute("src", pathWidget + "/scripts/jquery.cycle.all.js");

之后:

script_tag.setAttribute("src", pathWidget + "/scripts/jquery-1.7.min.js");

但是当我将循环加载到文档中时,我收到此错误:

$("#myRotator").cycle is not a function

我哪里错了?

2 个答案:

答案 0 :(得分:1)

尝试检查插件是否已加载:

if(!jQuery().cycle) {
  var script_cycle = document.createElement('script');
  script_cycle.setAttribute("type", "text/javascript");
  script_cycle.setAttribute("src", pathWidget + "/scripts/jquery.cycle.all.js");
  (document.getElementsByTagName("head")[0] || document.documentElement).appendChild(script_cycle);
}

答案 1 :(得分:0)

您可以使用 $.getScript() 加载外部Javascript文件。

if(!jQuery().cycle) {
    $.getScript('/scripts/jquery-1.7.min.js', 
    function() {});
}