等待jQuery加载
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了等待jQuery加载相关的知识,希望对你有一定的参考价值。
Sometimes, you need to setup functionality before jQuery is loaded (e.g. because of a template). You can use this snippet to schedule the function after jQuery is loaded.
var checker = 0; function jqueryLoaded() { clearInterval(checker); //alert('jQuery is loaded, sire!'); } function checkJquery() { if (window.jQuery) { jqueryLoaded(); } if(checker == 0) { //alert('Setting up interval'); checker = window.setInterval(checkJquery, 100); } } checkJquery();
以上是关于等待jQuery加载的主要内容,如果未能解决你的问题,请参考以下文章