특별한 일상

[개발] jQuery 버전 항상 최신버전 사용(use lastest of jQuery version) 본문

IT•개발 끄적/참고자료

[개발] jQuery 버전 항상 최신버전 사용(use lastest of jQuery version)

소다맛사탕 2021. 5. 29. 15:00
반응형

안녕하세요. 소다맛사탕 입니다.

제이쿼리(jQuery)를 사용하기 위해서는 웹 화면에서 CDN 호스트 주소를 사용하거나 직접 내려받아 사용해야 합니다.

 

※ CDN (Content Delivery Network)

콘텐츠를 효율적으로 전달하기 위해 전 세계 여러 지점의 서버에 파일을 저장해두고, 사용자와 가까운 지역에서 해당 파일(콘텐츠)을 제공해주는 네트워크 시스템을 의미합니다.

 

<!DOCTYPE html>
<html>
<head>
<script  src="http://code.jquery.com/jquery-latest.min.js"></script>
<title>제이쿼리 항상 최신버전유지</title>
</head>
<body>

</body>
</html>

항상 최신 버전의 jQuery를 사용하고 싶다면 위와 같이 선언하세요.


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


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

http://code.jquery.com/

 

jQuery CDN

The integrity and crossorigin attributes are used for Subresource Integrity (SRI) checking. This allows browsers to ensure that resources hosted on third-party servers have not been tampered with. Use of SRI is recommended as a best-practice, whenever libr

code.jquery.com

 

 

또는...

 

 

https://jquery.com/download/

 

Download jQuery | jQuery

link Downloading jQuery Compressed and uncompressed copies of jQuery files are available. The uncompressed file is best used during development or debugging; the compressed file saves bandwidth and improves performance in production. You can also download

jquery.com

위의 사이트에서 사용하고 싶은 버전을 내려받아 사용하세요.


 

Comments