如何正确使用谷歌加载器
我已经使用以下一段时间了:
<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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用其中任何一个。
正如 Google Libraries API 简介中所述
我更喜欢直接加载库(您的第二个选项),因为我认为不需要加载 google 库以及 jquery
如果您的页面本身是 httpS,请使用 httpS。否则,就使用http
You can use either.
As mentioned on Google Libraries API under introduction
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
你不需要第一行通过谷歌加载 jQuery API!
我建议您使用这种方法,以便始终加载最新稳定版本的 jQuery:
您也可以对查询 ui 执行相同的操作:
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:
you can also do the same with query ui: