Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
jQuery 有许多主机,例如 Google 和 Microsoft。不同公司托管的 jQuery 库是否有所不同?或者,它们对于相同的版本是相同的?
它们对于每个版本都是相同的。你可以选择你喜欢的那个。
将它们导入您的网站时,最好选择缩小版本。
唯一的区别可以在库启动之前的初始注释中找到(sourceMappingURL),但就库本身而言,它是相同的。
我建议使用 Google 托管的 jQuery:
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
因为它们通常具有减少的延迟和更好的缓存..