0

我有一个案例,我需要检查页面上是否存在 jQuery,如果不存在,我需要加载它。我创建了一个脚本标签并引用了外部 jQuery 库。在继续脚本的其余部分之前,如何等待库加载到页面上?

更新:

以下是祗园建议后的样子:

if (typeof jQuery === 'undefined') {
    var j = document.createElement('SCRIPT');
    j.type = 'text/javascript';
    j.src = '//ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js';
    document.getElementsByTagName('head')[0].appendChild(j);
    j.onload = function () {
        var section = document.createElement('DIV');
        section.setAttribute('style', 'height:300px; width:250px; position: fixed; right: 0px; top: 100px;z-index: 9999; border-style:solid;border-width:1px;');
        section.innerHTML = '<p>steps</p><textarea name="steps"></textarea><p>expected results</p><textarea name="results"></textarea><p><input type="button" name="submit" value="add test case" /></p>';

        document.getElementsByTagName('body')[0].appendChild(section);
    };  
} 
4

6 回答 6

6
<script type="text/javascript">
    if(typeof jQuery === 'undefined')
        document.write('<sc'+'ript type="text/javascript" src="jquery.js"></scrip'++'t>');
    window.onload = function(){
        // jquery should be present here
    });
</script>
于 2012-04-19T06:13:50.060 回答
1

您可以检查是否像这样加载了jquery

window.onload = function(){
    if(typeof jQuery == "undefined"){
           // jquery is not available 
    }
}

如果没有加载 jquery,我建议使用像 requirejs http://requirejs.org/这样的 javascript 加载器

于 2012-04-19T06:13:28.593 回答
0

您可以将其设置为window.onload

window.onload = function () { alert("It's loaded!") }

当页面完全加载时执行 Javascript

于 2012-04-19T06:12:15.693 回答
0

包含 jQuery 文件,仅在需要时,您需要先检查它

function afterLoad(){
  if(typeof(jQuery)!=='undefined')
    return;

  var element1 = document.createElement(“script”);
  element1.src = “pointToYourjQueryFile.js”;
  element1.type=”text/javascript”;
  document.getElementsByTagName(“head”)[0].appendChild(element1);
}

以这种方式在窗口加载时调用此函数...

<body onload="afterLoad()"?>
于 2012-04-19T06:16:37.587 回答
0
window.onload = function(){
    var script,head;
    if(!jQuery){
        script = document.createElement('script');
        document.getElementsByTagName('head')[0].appendChild(script);
        script.onload = function(){
           alert('jQuery loaded');
        }
        script.src = 'path_to_jquery';
    }
}
于 2012-04-19T06:18:03.040 回答
0

Modernizr 使用这条线:

<script>window.jQuery || document.write('<script src="./js/libs/jquery-1.6.2.min.js"><\/script>')</script>

但是 document.write 被认为是不安全的。因此,我会将其与已发布的内容联系起来:

if(!window.jQuery)
{
    var element1 = document.createElement(“script”);
    element1.src = “somefile.js”;
    element1.type=”text/javascript”;
    document.getElementsByTagName(“head”)[0].appendChild(element1);
}

另一方面,谷歌使用:

(function() {
    if(window.jQuery) return;

    var po = document.createElement('script'); po.type = 'text/javascript'; po.async = true;
    po.src = 'some.js';
    var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(po, s);
})();

它将脚本附加到网站上已经存在的第一个标签。如果您的站点上至少有一个 <script>,请使用这个。据我所知,它被认为是最好的解决方案。

于 2012-04-19T06:19:28.570 回答