jqueryがロードされているかどうかを確認し、falseの場合はロードします


117

jqueryが(JavaScriptで)ロードされているかどうかを確認し、ロードされていない場合はロードする方法を知っている人はいますか?

何かのようなもの

if(!jQuery) {
    //load jquery file
}

1
ヘッドアップをありがとう!うまくいけば、実際に呼び出す必要はありません。ほんの少しの冗長性を追加しようとしています
17

回答:


166

多分このようなもの:

<script>
if(!window.jQuery)
{
   var script = document.createElement('script');
   script.type = "text/javascript";
   script.src = "path/to/jQuery";
   document.getElementsByTagName('head')[0].appendChild(script);
}
</script>

5
これは、ドキュメントにheadスクリプト要素を追加できるという前提があることに注意してください
Daniel LeCheminant

1
@DanielLeCheminant良い点ですね。もしあったなら( document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0] ).appendChild( script );
パウェルグロー

3
@Pawel一部の実装では、最初のスクリプトタグの前後に要素を挿入するのを見てきました。
Daniel LeCheminant 2012

bodyにスクリプトタグを追加しても、すべてのブラウザで機能すると思います。
Steven Lu

3
結論として、最も安全なメソッドは次のとおりです:(document.getElementsByTagName( 'head')[0] || document.getElementsByTagName( 'script')[0]).appendChild(script); 少なくともスクリプトタグのインスタンスがあるためです。
tormuto 2015

106

IEがエラーを返すため、「if(!jQuery)」の使用は避けてください。jQueryは「未定義」です

代わりに使用してください:if(typeof jQuery == 'undefined')

<script type="text/javascript">
if (typeof jQuery == 'undefined') {
    var script = document.createElement('script');
    script.type = "text/javascript";
    script.src = "http://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js";
    document.getElementsByTagName('head')[0].appendChild(script);
}
</script>

また、ヘッダーに追加した後、JQueryがロードされたかどうかを確認する必要があります。それ以外の場合は、window.onloadイベントを待つ必要があります。これは、ページに画像がある場合は遅くなります。$(document).ready(function ...

http://neighborhood.org/core/sample/jquery/append-to-head.htm


どうscript.onload = function() { alert('jQuery loaded!'); }ですか?それはうまくいくでしょうか?
robsch 2017

14

方法1:

if (window.jQuery) {  
    // jQuery is loaded  
} else {
    // jQuery is not loaded
}

方法2:

if (typeof jQuery == 'undefined') {  
    // jQuery is not loaded
} else {
    // jQuery is loaded
}

jquery.jsファイルがロードされていない場合は、次のように強制的にロードできます。

if (!window.jQuery) {
  var jq = document.createElement('script'); jq.type = 'text/javascript';
  // Path to jquery.js file, eg. Google hosted version
  jq.src = '/path-to-your/jquery.min.js';
  document.getElementsByTagName('head')[0].appendChild(jq);
}

8

これを試して :

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

これは、jQueryが使用可能かどうかをチェックし、使用可能でない場合は、指定されたパスから動的に追加します。

参照:jQueryの「include_once」をシミュレートする

または

jsと同等のinclude_once。参照:https : //raw.github.com/kvz/phpjs/master/functions/language/include_once.js

function include_once (filename) {
  // http://kevin.vanzonneveld.net
  // +   original by: Legaev Andrey
  // +   improved by: Kevin van Zonneveld (http://kevin.vanzonneveld.net)
  // +   improved by: Michael White (http://getsprink.com)
  // +      input by: Brett Zamir (http://brett-zamir.me)
  // +   bugfixed by: Kevin van Zonneveld (http://kevin.vanzonneveld.net)
  // +   bugfixed by: Brett Zamir (http://brett-zamir.me)
  // -    depends on: include
  // %        note 1: Uses global: php_js to keep track of included files (though private static variable in namespaced version)
  // *     example 1: include_once('http://www.phpjs.org/js/phpjs/_supporters/pj_test_supportfile_2.js');
  // *     returns 1: true
  var cur_file = {};
  cur_file[this.window.location.href] = 1;

  // BEGIN STATIC
  try { // We can't try to access on window, since it might not exist in some environments, and if we use "this.window"
    //    we risk adding another copy if different window objects are associated with the namespaced object
    php_js_shared; // Will be private static variable in namespaced version or global in non-namespaced
    //   version since we wish to share this across all instances
  } catch (e) {
    php_js_shared = {};
  }
  // END STATIC
  if (!php_js_shared.includes) {
    php_js_shared.includes = cur_file;
  }
  if (!php_js_shared.includes[filename]) {
    if (this.include(filename)) {
      return true;
    }
  } else {
    return true;
  }
  return false;
}

2

頭を追加しても、すべてのブラウザで機能しない場合があります。これは、一貫して機能することがわかった唯一の方法でした。

<script type="text/javascript">
if (typeof jQuery == 'undefined') {
  document.write('<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"><\/script>');        
  } 
</script>

2
document.write 非常に眉をひそめていませんか?
Carcigenicate 2015

1

jQueryが読み込まれているかどうかは、次のようなさまざまな方法で確認できます。

if (typeof jQuery == 'undefined') {

    // jQuery IS NOT loaded, do stuff here.

}


if (typeof jQuery == 'function')
//or
if (typeof $== 'function')


if (jQuery) {
    // This will throw an error in STRICT MODE if jQuery is not loaded, so don't use if using strict mode
    alert("jquery is loaded");
} else {
    alert("Not loaded");
}


if( 'jQuery' in window ) {
    // Do Stuff
}

jQueryがロードされていないか確認した後、次のようにjQueryをロードできます。

この部分はこの投稿で多くの人によって回答されていますが、コードの完全性のためにまだ回答しています


    // This part should be inside your IF condition when you do not find jQuery loaded
    var script = document.createElement('script');
    script.type = "text/javascript";
    script.src = "http://code.jquery.com/jquery-3.3.1.min.js";
    document.getElementsByTagName('head')[0].appendChild(script);

1

古い投稿ですが、サーバルな場所でテストされているものを良い解決策にしました。

https://github.com/CreativForm/Load-jQuery-if-it-is-not-already-loaded

コード:

(function(url, position, callback){
    // default values
    url = url || 'https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js';
    position = position || 0;

    // Check is jQuery exists
    if (!window.jQuery) {
        // Initialize <head>
        var head = document.getElementsByTagName('head')[0];
        // Create <script> element
        var script = document.createElement("script");
        // Append URL
        script.src = url;
        // Append type
        script.type = 'text/javascript';
        // Append script to <head>
        head.appendChild(script);
        // Move script on proper position
        head.insertBefore(script,head.childNodes[position]);

        script.onload = function(){
            if(typeof callback == 'function') {
                callback(jQuery);
            }
        };
    } else {
        if(typeof callback == 'function') {
            callback(jQuery);
        }
    }
}('https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js', 5, function($){ 
    console.log($);
}));

GitHubでより良い説明ですが、一般的にこの関数はHTMLコードのどこにでも追加でき、まだロードされていない場合はjqueryを初期化します。


0
var f = ()=>{
    if (!window.jQuery) {
        var e = document.createElement('script');
        e.src = "https://code.jquery.com/jquery-3.2.1.min.js";
        e.onload = function () {
            jQuery.noConflict();
            console.log('jQuery ' + jQuery.fn.jquery + ' injected.');
        };
        document.head.appendChild(e);
    } else {
        console.log('jQuery ' + jQuery.fn.jquery + '');
    }
};
f();

それを説明するには、コードにコメントを追加する必要があります。
Ebrahim Poursadeqi 2017年

0
<script>
if (typeof(jQuery) == 'undefined'){
        document.write('<scr' + 'ipt type="text/javascript" src=" https://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></scr' + 'ipt>');
}
</script>

-1

私はプロジェクトにCDNを使用しており、フォールバック処理の一部として、以下のコードを使用していました。

<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
    <script type="text/javascript">
                if ((typeof jQuery == 'undefined')) {
                    document.write(unescape("%3Cscript src='/Responsive/Scripts/jquery-1.9.1.min.js' type='text/javascript'%3E%3C/script%3E"));   
                }
</script>

確認のために、CDN参照を削除してコードを実行しました。その壊れていて、typeof jQuery関数として来ているので、ループに入ることがありません undefinedではなくありません。

これは、jquery 1.9.1を使用しているため、関数を返し、コードを破壊する古いバージョンのjquery 1.6.1がキャッシュされているためです。jqueryの正確なバージョンが必要なので、以下のようにコードを変更しました、

<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script type="text/javascript">
            if ((typeof jQuery == 'undefined') || (jQuery.fn.jquery != "1.9.1")) {
                document.write(unescape("%3Cscript src='/Responsive/Scripts/jquery-1.9.1.min.js' type='text/javascript'%3E%3C/script%3E"));   
            }
</script>
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.