如何正确使用谷歌加载器

发布于 2024-12-12 04:04:23 字数 539 浏览 0 评论 0原文

我已经使用以下一段时间了:

    <script src="https://www.google.com/jsapi?key=MY_API_KEY" type="text/javascript"></script>
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js" type="text/javascript"></script>

但是,我已经看到了其他谷歌加载器替代方案,例如仅加载 jQuery 本身(注意:http):

<script src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js" type="text/javascript"></script>

这种替代方案意味着您不需要调用第一个示例。

使用 Google 加载器时最好使用哪种方法?

I've been using the following for a while:

    <script src="https://www.google.com/jsapi?key=MY_API_KEY" type="text/javascript"></script>
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js" type="text/javascript"></script>

However, I have seen other google loader alternatives e.g. just loading the jQuery itself (note: http):

<script src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js" type="text/javascript"></script>

This alternative means you don't need to call the first example.

Which is the best method to use when using Google loader?

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

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

发布评论

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

评论(2

谜泪 2024-12-19 04:04:23

您可以使用其中任何一个。
正如 Google Libraries API 简介中所述

库 API 为您的应用程序提供稳定、可靠、
在全球范围内高速访问所有最受欢迎的、
开源 JavaScript 库。您的应用程序可以使用我们的
灵活的加载器 google.load() 或直接基于路径的访问
脚本。

我更喜欢直接加载库(您的第二个选项),因为我认为不需要加载 google 库以及 jquery

如果您的页面本身是 httpS,请使用 httpS。否则,就使用http

You can use either.
As mentioned on Google Libraries API under introduction

The Libraries API provides your applications with stable, reliable,
high-speed, globally available access to all of the most popular,
open-source JavaScript libraries. Your application can use our very
flexible loader google.load() or direct, path-based access to the
scripts.

I prefer to load the libraries directly (your second option) as I don't see the need to load google libraries aswell as jquery

Use httpS if your page itself is httpS. Otherwise, there just use http

这样的小城市 2024-12-19 04:04:23

你不需要第一行通过谷歌加载 jQuery API!
我建议您使用这种方法,以便始终加载最新稳定版本的 jQuery:

<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.6/jquery.js"></script>

您也可以对查询 ui 执行相同的操作:

<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/jquery-ui.js"></script>
<link rel="stylesheet" type="text/css" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.5/themes/cupertino/jquery-ui.css"/>

you have no need of the first line to load the jQuery API through google!
I suggest you use this approach so as to always load the latest stable version of jQuery:

<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.6/jquery.js"></script>

you can also do the same with query ui:

<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/jquery-ui.js"></script>
<link rel="stylesheet" type="text/css" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.5/themes/cupertino/jquery-ui.css"/>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文