Skip to content

Instantly share code, notes, and snippets.

@simplelife7
Created July 5, 2013 07:19
Show Gist options
  • Select an option

  • Save simplelife7/5932610 to your computer and use it in GitHub Desktop.

Select an option

Save simplelife7/5932610 to your computer and use it in GitHub Desktop.
【JS】判断页面是否有jQuery
//方法一:
if(typeof(jQuery) == 'undefined'){
console('yes');
}else{
console('no');
}
//方法二:
if(window.jQuery){
console('yes');
}else{
console('no');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment