js-jQuery-jQueryLoader-检查$是否未定义,如果需要,用纯javascript加载jQuery
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js-jQuery-jQueryLoader-检查$是否未定义,如果需要,用纯javascript加载jQuery相关的知识,希望对你有一定的参考价值。
/* I used to use (!$) or ($ == undefined) but that doesn't work sucka! */ if (!window.jQuery) { var jqscript = document.createElement('script'); jqscript.setAttribute("src", "http://code.jquery.com/jquery.min.js"); document.getElementsByTagName("head")[0].appendChild(jqscript); };
以上是关于js-jQuery-jQueryLoader-检查$是否未定义,如果需要,用纯javascript加载jQuery的主要内容,如果未能解决你的问题,请参考以下文章