- 从 jquery.com 下载
jQuery
库
jQuery
库是一个 JavaScript
文件,您可以使用 HTML
的 <script>
标签引用它:
<head>
<script src="jquery-1.10.2.min.js"></script>
</head>
- 从
CDN
中载入jQuery
, 如从Google
中加载jQuery
Staticfile CDN
:
<head>
<script src="https://cdn.staticfile.org/jquery/1.10.2/jquery.min.js">
</script>
</head>
百度 CDN
:
<head>
<script src="https://apps.bdimg.com/libs/jquery/2.1.4/jquery.min.js">
</script>
</head>
又拍云CDN
:
<head>
<script src="https://upcdn.b0.upaiyun.com/libs/jquery/jquery-2.0.2.min.js">
</script>
</head>
新浪CDN
:
<head>
<script src="https://lib.sinaapp.com/js/jquery/2.0.2/jquery-2.0.2.min.js">
</script>
</head>
GoogleCDN
:
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js">
</script>
</head>
MicrosoftCDN
:
<head>
<script src="https://ajax.aspnetcdn.com/ajax/jquery/jquery-1.9.0.min.js"></script>
</head>
许多用户在访问其他站点时,已经从百度、又拍云、新浪、谷歌或微软加载过 jQuery
。所以结果是,当他们访问您的站点时,会从缓存中加载 jQuery
,这样可以减少加载时间。同时,大多数 CDN
都可以确保当用户向其请求文件时,会从离用户最近的服务器上返回响应,这样也可以提高加载速度。
我们可以在浏览器的 Console
窗口中使用 $.fn.jquery
命令查看当前 jQuery
使用的版本:
网友评论