用于 jquery 或 prototypejs 或任何其他(如果未加载)的 Google CDN

发布于 2024-10-14 16:53:26 字数 368 浏览 2 评论 0原文

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

编辑

中找到了这个链接

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

这与我的问题非常相似。

很抱歉问已经被问过的同样的问题。

I am using google CDN for jQuery and prototypeJS library in my pages. For any reason, if those library are not loaded what measure can I take so that my pages function properly.

EDIT

I have found this link in SO

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

which is very similar to my question.

Sorry to ask the same thing which has been asked already.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

情感失落者 2024-10-21 16:53:26
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);

}
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);

}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文