jquery网络地址
jQuery 官方 CDN 地址
jQuery 提供了多个官方 CDN(内容分发网络)地址,适用于不同版本和需求。以下是最常用的 jQuery CDN 链接:
jQuery 3.x 最新版本
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
jQuery 2.x(仅支持 IE9+)

<script src="https://code.jquery.com/jquery-2.2.4.min.js"></script>
jQuery 1.x(兼容旧版浏览器)
<script src="https://code.jquery.com/jquery-1.12.4.min.js"></script>
其他 CDN 提供商
除了官方 CDN,还可以使用以下公共 CDN 服务:

-
Google CDN
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script> -
Microsoft CDN
<script src="https://ajax.aspnetcdn.com/ajax/jQuery/jquery-3.7.1.min.js"></script> -
cdnjs
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script>
使用建议
- 生产环境建议使用特定版本(如
3.7.1)而非latest,避免版本更新导致兼容性问题。 - 可通过
integrity属性验证文件完整性(官方 CDN 提供 SRI 哈希值)。
示例:<script src="https://code.jquery.com/jquery-3.7.1.min.js" integrity="sha256-/JqT3SQfawRcv/BIHPThkBvs0OEvtFFmqPF/lYI/Cxo=" crossorigin="anonymous"> </script>
其他资源
- jQuery 官网:https://jquery.com
- GitHub 仓库:https://github.com/jquery/jquery






