我在我的网页上加载了三个脚本,我想在其中两个完成加载后触发一个函数。
head.js(
{ webfont: 'http://ajax.googleapis.com/ajax/libs/webfont/1.0.31/webfont.js' },
{ jquery: 'http://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js' },
{ analytics: 'http://www.google-analytics.com/ga.js' }
);
理想情况下,我希望能够执行以下操作,但根据文档(请参阅脚本组织),似乎无法让 head.ready() 等待两个脚本加载。
head.ready('jquery', function() {
// Code that requires jQuery.
});
// This is not supported. :-(
head.ready('jquery', 'analytics', function() {
// Code that requires both jQuery and Google Analytics.
// ...
});
那么我应该如何解决这个问题呢?如果我嵌套了准备好的方法,我可以确定我的代码会被触发,还是只有在 jquery 在分析之前完成加载时才会触发?
head.ready('jquery', function() {
// Code that requires jQuery.
// ...
head.ready('analytics', function() {
// Code that requires both jQuery and Google Analytics.
// ...
});
});
另一种解决方案可能是将加载语句分成两部分,就像这样。但是我仍然会从脚本的异步加载中充分受益,还是会在 jquery 和分析之前完成加载 webfont?
head.js(
{ webfont: 'http://ajax.googleapis.com/ajax/libs/webfont/1.0.31/webfont.js' }
);
head.js(
{ jquery: 'http://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js' },
{ analytics: 'http://www.google-analytics.com/ga.js' },
function() {
// Code that requires both jQuery and Google Analytics.
// ...
}
);
head.ready('jquery', function() {
// Code that requires jQuery.
// ...
});