jQuery 다운로드
jQuery 라이브러리 파일의 경우 "jQuery 공식 웹사이트"로 이동하여 다운로드할 수 있습니다.
실제로 jQuery 라이브러리 파일에는 두 가지 유형이 있습니다. (1) 개발 버전, (2) 릴리스 버전.
개발 버전은 압축되지 않았으며 개발자에게 jQuery를 배울 수 있는 소스 코드를 제공합니다. 일반적으로 이름은 jquery.js입니다. 릴리스 버전은 압축되어 있으며 일반적으로 jquery.min.js라는 이름의 jQuery를 사용할 수 있습니다.
jQuery 라이브러리는 HTML의 <script> 태그를 사용하여 참조할 수 있는 JavaScript 파일입니다.
<head>
<script src="jquery-1.10.2.min.js">< script>
</head>
팁: 다운로드한 파일을 웹페이지의 동일한 디렉토리에 배치하여 jQuery를 사용할 수 있습니다.
참고: 이 파일의 소스 코드를 함부로 건드리지 마세요.
Alternatives CDN
jQuery를 다운로드하고 호스팅하고 싶지 않다면 CDN(Content Delivery Network)을 통해 참조할 수도 있습니다.
Baidu, Youpaiyun, Sina, Google 및 Microsoft 모두 서버에 jQuery를 보유하고 있습니다.
사이트 사용자가 국내인 경우 바이두, 유파이윤, 시나 등 국내 CDN 주소를 사용하는 것이 좋습니다. 해외인 경우 구글, 마이크로소프트를 이용하시면 됩니다.
참고: 이 사이트의 모든 예제는 Baidu jQuery CDN 라이브러리를 사용합니다.
Baidu, Youpaiyun, Sina, Google 또는 Microsoft의 jQuery를 인용하려면 다음 코드 중 하나를 사용하세요.
Baidu CDN:
<head> <script src="http://libs.baidu.com/jquery/1.10.2/jquery.min.js"></script> </head>
Youpaiyun CDN:
<head> <script src="http://upcdn.b0.upaiyun.com/libs/jquery/jquery-2.0.2.min.js"></script> </head>
Sina CDN:
<head> <script src="http://lib.sinaapp.com/js/jquery/2.0.2/jquery-2.0.2.min.js"></script> </head>
Google CDN:
<head> <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script> </head>
참고:Google 제품은 버전을 얻기 위해 Google CDN을 사용하지 않는 것이 좋습니다. 이다 중국은 매우 불안정합니다.
Microsoft CDN:
<head> <script src="http://ajax.htmlnetcdn.com/ajax/jQuery/jquery-1.10.2.min.js"></script> </head>
Baidu, Youpaiyun, Sina, Google 또는 Microsoft의 jQuery를 사용하면 큰 이점이 있습니다.
다음 섹션