我在yepnope的主页上直接使用了代码:
yepnope([{
load: 'http://ajax.googleapis.com/ajax/libs/jquery/1.5.2/jquery.min.js',
complete: function() {
console.log('made it');
if(!window.jQuery) { yepnope('/js/jquery.1.5.2-min.js'); }
}
}]);
我今天没有上网工作,我注意到我的本地版本的jQuery没有加载。
由于我没有连接到互联网,我认为在上面的示例中,Google CDN版本无法加载,将调用complete
函数来加载我的本地副本。看起来complete
根本没有被调用,因为我没有在控制台中看到“成功”。
另外,我检查了本地副本的路径是否正确。
答案 0 :(得分:5)
根据您的评论和问题更新进行编辑:
你必须等待它超时。完整的功能不会立即触发。我刚刚下载了yepnope.js并运行了他们的demo / index.html,并在他们的yepnope调用下添加了以下代码,在页面底部加载了jQuery:
yepnope({
load : "http://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js",
callback : function() { console.log("callback"); },
complete : function() { console.log("complete"); }
});
显然jQuery 1.6.2不会加载。大约10-15秒后,在控制台中,“回调”和“完整”消息都显示出来,所以我知道他们被解雇了。
<强> Alernative:强>
如果您发现只需要使用此功能进行在线/离线开发,您可以尝试Html5Boilerplate使用的内容,我已将其添加到其中:
<!-- Grab Google CDN's jQuery, with a protocol relative URL;
fall back to local if necessary -->
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.5.2/jquery.min.js"
type="text/javascript"></script>
<script type="text/javascript">
window.jQuery || document.write('<script src="js/jquery-1.5.2.js">\x3C/script>')
</script>
以下是我个人使用的内容:
</form>
<!-- Javascript at the bottom for fast page loading -->
<!-- Grab Google CDN's jQuery, with a protocol relative URL; fall back to local if necessary -->
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.5.2/jquery.min.js" type="text/javascript"></script>
<script type="text/javascript"> window.jQuery || document.write('<script src="js/jquery-1.5.2.js">\x3C/script>')</script>
<!-- Grab Google CDN's jQuery UI, with a protocol relative URL; fall back to local if necessary -->
<script src="//ajax.googleapis.com/ajax/libs/jqueryui/1.8.4/jquery-ui.min.js" type="text/javascript"></script>
<script type="text/javascript"> $.ui || document.write('<script src="js/jquery-ui-1.8.4.custom.min.js">\x3C/script>')</script>
<!-- Scripts concatenated and minified via ant build script-->
<script src="js/plugins.js" type="text/javascript"></script>
<script src="js/script.js" type="text/javascript"></script>
<!-- End scripts -->
</body>
</html>