Created
July 5, 2013 07:19
-
-
Save simplelife7/5932610 to your computer and use it in GitHub Desktop.
【JS】判断页面是否有jQuery
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //方法一: | |
| 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