包含 jQuery 和 jQuery UI 是 Web 开发中的一项基本任务。有多种选项可用于包含这些库:Google JSAPI、jQuery 站点、您自己的服务器或第三方 CDN。
选择包含方法时,以下内容应考虑的因素:
基于上述考虑,包含 jQuery 的首选方法是使用 Google JSAPI。它提供:
对于同时具有安全和不安全页面的网站,建议动态调整 Google 源以通过 HTTPS 加载 jQuery 时避免出现安全警告:
<code class="html"><script type="text/javascript"> document.write([ "\<script src='", ("https:" == document.location.protocol) ? "https://" : "http://", "ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.min.js' type='text/javascript'>\<\/script>" ].join('')); </script></code>
以上是我应该使用 Google JSAPI 还是 CDN 来包含 jQuery?的详细内容。更多信息请关注PHP中文网其他相关文章!