0

我正在使用 Head js 并行加载我的 javascript 文件。我将 head js 添加到我的头上,然后使用head.js("path/to/file/my.js");,但是当我加载我的网页时,脚本丢失了。只有刷新几次后,整个脚本才能正常工作。为什么我需要刷新它才能使其工作?任何建议,将不胜感激!

4

2 回答 2

2

由于脚本是异步加载的,因此您不能立即使用它。刷新页面后,它会在缓存中找到脚本,因此有时会及时加载任何需要它的代码。

对需要脚本的任何代码使用该ready方法:

head.ready(function() {
  // any code that needs the script to be loaded first
});
于 2012-06-15T10:25:14.537 回答
2

另一种方法是标记您的库,然后在加载脚本时获取就绪事件。从http://headjs.com/阅读更多标签脚本。

head.ready("your", function() {

});

head.js(
   {jquery: "http://http://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js"},
   {tools: "http://cnd.jquerytools.org/1.2.5/tiny/jquery.tools.min"},
   {your: "http://a.heavy.library/we/dont/want/to/wait/for.js"},

   // label is optional
   "http://can.be.mixed/with/unlabeled/files.js"
);
于 2012-06-15T10:29:40.020 回答