谷歌CDN用于jquery和原型js或任何其他如果没有加载

时间:2011-01-28 05:11:16

标签: jquery prototypejs google-cdn

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

修改

我在SO

中找到了这个链接

Best way to use Google's hosted jQuery, but fall back to my hosted library on Google fail

这与我的问题非常相似。

很抱歉,问过已经问过的事情。

2 个答案:

答案 0 :(得分:2)

答案 1 :(得分: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);

}