备份 CDN Javascript 库位置

发布于 2024-11-01 16:06:13 字数 379 浏览 1 评论 0原文

我们的网络应用程序使用 Google CDN 链接到 jQuery 库,它开始在我们的网站上变得非常流行。当客户安装防火墙并专门允许我们的网站时,我们时不时会遇到一个主要问题 - 但他们对这些外部 JavaScript 库一无所知。这不是一个简单的事情,例如检查客户端是否可以运行 Javscript - 因为他们可以......他们只是无法获得 jQuery,因此功能被破坏。

是否有一个“备份”JS 库,我可以在其中指定两个位置进行检查?我的另一个选择是为使用防火墙的人提供常见问题解答条目。在本地托管库对我们来说并不是一个好主意,因为我们试图降低带宽,而我喜欢在其他地方拥有这些库。

如果我包含两个

Our web app uses the Google CDN to link to the jQuery library and it's starting to become very prevalent on our site. We have a major problem every now and then when clients install a firewall and specifically allow our website - but they know nothing of these external javascript libraries. It's not a simple case of doing something like checking whether the client can run Javscript - because they can ... they just don't get jQuery and hence functionality is broken.

Is there such a thing as a "backup" JS library where I can specify two locations to check? My other alternative is to provide an FAQ entry for people using a firewall. Hosting the libraries locally isn't really a good idea for us because we're trying to keep bandwidth down, and I like having those libraries elsewhere.

If I include two <script> tags it will download them both, correct?

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

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

发布评论

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

评论(1

假情假意假温柔 2024-11-08 16:06:13
<script>!window.jQuery && document.write(unescape('%3Cscript src="js/libs/jquery-1.4.2.js"%3E%3C/script%3E'))</script>

在这里找到 Google CDN 的 jQuery UI 回退

<script>!window.jQuery && document.write(unescape('%3Cscript src="js/libs/jquery-1.4.2.js"%3E%3C/script%3E'))</script>

Found here Fallback for jQuery UI from google CDN

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