2017/06/21

typeofでjQueryの有無を判定





以下のコードで、jQueryの有無を判定できます。
jQueryを読み込ませるか、読み込ませないかで、yesかnoをコンソールに出しますので、確認してみてください。


(function(){
 if(typeof jQuery == 'undefined'){
  console.log('no');//jQueryがない場合
 } else {
  console.log('yes');//jQueryがある場合
 };
})();