program story

Google API의 "최신"jQuery 라이브러리에 대한 링크가 있습니까?

inputbox 2020. 9. 29. 07:44
반응형

Google API의 "최신"jQuery 라이브러리에 대한 링크가 있습니까? [복제]


이 질문에 이미 답변이 있습니다.

<script>태그 의 jQuery 링크에 다음을 사용합니다 .

http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.js

"최신"버전에 대한 링크가 있습니까? 다음과 같은 것 (작동하지 않음) :

http://ajax.googleapis.com/ajax/libs/jquery/latest/jquery.js

(분명히 코드를 잠재적으로 변경되는 라이브러리에 연결하는 훌륭한 계획은 아니지만 개발에 유용합니다.)


jQuery 1.11.1까지는 다음 URL을 사용하여 최신 버전의 jQuery를 가져올 수 있습니다.

예를 들면 :

<script src="https://code.jquery.com/jquery-latest.min.js"></script>

그러나 jQuery 1.11.1 이후로 jQuery와 Google 모두 이러한 URL 업데이트를 중단했습니다. 그들은 것입니다 영원히 1.11.1로 고정. 사용할 수있는 대체 URL이 없습니다. 이러한 경우에 대한 설명은이 블로그 게시물을 참조하십시오. jquery-latest.js를 사용하지 마십시오 .

두 호스트 지원 https뿐만 아니라 http, 그래서 당신이 적합을 참조로 프로토콜을 변경 (또는 사용하는 프로토콜 상대 URI를 )

참조 : https://developers.google.com/speed/libraries/devguide


이 답변을 사용하지 마십시오. URL은 jQuery 1.11을 가리키고 있습니다 ( 항상 ).

위의 스 니펫에 대한 기본 크레딧

http://code.jquery.com/jquery-latest.min.js 는 최소화 된 버전이며 항상 최신입니다.


Google의 "직접"링크와 "최신"링크를 사용하는 경우 캐싱 헤더가 다릅니다.

http://ajax.googleapis.com/ajax/libs/jquery/1.3.1/jquery.min.js를 사용하는 경우

Cache-Control: public, max-age=31536000

http://ajax.googleapis.com/ajax/libs/jquery/1.3/jquery.min.js를 사용하는 경우

Cache-Control: public, max-age=3600, must-revalidate, proxy-revalidate

jquery-latest.js를 사용하지 마십시오

이 파일은 더 이상 업데이트되지 않습니다 (v1.11.1에 영원히있을 것입니다). 또한 캐시 수명이 매우 짧기 때문에 (CDN 사용의 이점 제거) 대신 jQuery 버전을 선택하는 것이 좋습니다.

jQuery 블로그에 대한 자세한 내용 : http://blog.jquery.com/2014/07/03/dont-use-jquery-latest-js/


아무 이유없이 최신 라이브러리를 자동으로 사용해서는 안됩니다. 내일 최신 라이브러리를 출시하고 일부 스크립트가 손상 되면 SOL 이지만 스크립트를 개발하는 데 사용한 라이브러리를 사용하면 제대로 작동하는지 확인할 수 있습니다.


사용하다:

<script type="text/javascript" src="//www.google.com/jsapi"></script>
<script type="text/javascript">
//<![CDATA[
    google.load("jquery", "1");
    //google.load("jqueryui", "1");
    //google.load("swfobject", "1");
//]]>
</script>

참고 : 위의 스 니펫은 1.7.1 또는 1.11.1에 고정됩니다.

프로덕션에 대한 나의 조언은 CDN jQuery 버전을 하드 코딩하는 것입니다. <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>

https://developers.google.com/speed/libraries/ 에서 Google CDN의 최신 라이브러리를 찾을 수 있습니다.

또는 jQuery CDN을 사용하십시오 : https://code.jquery.com/


jQuery also doesn't allow you to call their latest file over SSL, a consideration if you want to use jQuery in a shopping cart etc.

e.g.

<script type="text/javascript" src="https://code.jquery.com/jquery-latest.min.js"></script>

will give you a security error.

Google's API will let you call over SSL:

<script type="text/javascript" src="https://www.google.com/jsapi"></script>
<script type="text/javascript">
  google.load("jquery", "1.7");
</script>

Yes there is.

http://code.jquery.com/jquery-latest.min.js


No. There isn't..

But, for development there is such a link on the jQuery code site.


What about this one?

http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js

I think this is always the latest version - Correct me, if I'm wrong.


http://lab.abhinayrathore.com/jquery_cdn/ is a page where you can find links to the latest versions of jQuery, jQuery UI and Themes for Google and Microsoft CDN's.

This page automatically updates with the latest links from the CDN.


You can use the latest version of the jQuery library by any of the following.

  • Google Ajax API CDN (also supports SSL via HTTPS)

    <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2"></script>
    

    /jquery.min.js

  • Microsoft CDN (also aupports SSL via HTTPS)

    <script type="text/javascript" src="http://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.7.2.min.js"></script>
    

    Ajax CDN Announcement, Microsoft Ajax CDN Documentation

  • jQuery CDN (via Media Temple)

     <script type="text/javascript" src=" http://code.jquery.com/jquery-1.7.2.min.js"></script>
    

    ** Minified version

     <script type="text/javascript" src="http://code.jquery.com/jquery-1.7.2.js"></script>
    

    ** Development (Full) version

참고URL : https://stackoverflow.com/questions/441412/is-there-a-link-to-the-latest-jquery-library-on-google-apis

반응형