0

我在我的页面中使用 google CDN for jQuery 和 prototypeJS 库。出于任何原因,如果未加载这些库,我可以采取什么措施使我的页面正常运行。

编辑

我在 SO 中找到了这个链接

使用 Google 托管 jQuery 的最佳方式,但退回到我在 Google 上的托管库失败

这与我的问题非常相似。

很抱歉问了同样的问题。

4

2 回答 2

2

看看这个

于 2011-01-28T05:15:05.547 回答
1
if (typeof jQuery == 'undefined')) {
  // Insert your local copy

  var script = document.createElement('script');
  script.type = 'text/javascript';
  script.src = 'to/local/copy/jquery.js';

  var scriptHook = document.getElementsByTagName('script')[0];
  scriptHook.parentNode.insertBefore(script, scriptHook);

}
于 2011-01-28T05:22:12.303 回答