使用JS代码方法对同一个页面是否存在另一个js进行判断,判断某js文件有没有引入,比如最常用到的实例就是判断jQuery库是否已加载。一般引入的js文件里面都会有特定函数和对象存在,那么我们就可以通过js的typeof功能来判断。
判断对象:
if(typeof jQuery.colorbox == 'undefined'){ document.write("<script src="\" text="" type="\"><\/script>"); }
!window.jQuery && alert("没有加载jQuery!");
判断函数:
if(typeof("function_name")=="function"){ alert("Function exists!"); }