본문 바로가기
BackEnd/Java

[Java] JQuery 프로젝트에 연결하기

by summer_light 2021. 8. 9.

JQuery 프로젝트에 연결하기

 

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

다운로드 하지 않고, 위 사이트에서 CDN(콘텐츠 전송 네트워크)으로 연결하여 사용할 것이다. 

 

 

위 사이트에서 3.x 버전의 'uncompressed' 를 누르면 다음과 같은 창이 뜬다.
이 창에서, 파란색 아이콘을 눌러 Copy한다.

 

<script
  src="https://code.jquery.com/jquery-3.6.0.js"
  integrity="sha256-H+K7U5CnXl1h5ywQfKtSj8PCmoN9aaq30gDh27Xc0jk="
  crossorigin="anonymous"></script>

▲ 위 사이트를 들어가지 않고 코드만 복사하고 싶은 분들은 위 코드를 복사해주면 된다. 

 

위의 copy한 코드를 <head></head> 태그 사이에 붙여넣기 해 주면 끝!

댓글