일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
- 원펀맨: 최강의 남자
- 이름 마스킹
- 형변환
- 모바일게임
- 원펀맨
- set
- 자바
- jQuery
- 맛집
- url 치환
- array
- table
- 리액트
- JSTL
- JavaScript
- React
- url 변환
- html
- JSX
- 개발
- SQL
- spring
- Java
- JS
- 배열
- forEach
- 자바스크립트
- 스프링
- 오라클
- Oracle
- Today
- Total
특별한 일상
[개발] jQuery 버전 항상 최신버전 사용(use lastest of jQuery version) 본문
안녕하세요. 소다맛사탕 입니다.
제이쿼리(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>
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
또는...
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
위의 사이트에서 사용하고 싶은 버전을 내려받아 사용하세요.
'IT•개발 끄적 > 참고자료' 카테고리의 다른 글
카카오톡 캐시 및 네이버앱 캐시 제거/삭제(kakao talk cache delete, naver app cache delete) (0) | 2021.06.24 |
---|---|
정보처리기사 데이터베이스 정리 (0) | 2021.04.03 |