Frontend/JQuery

jQuery 설치

둥둥 2023. 1. 15. 16:52
728x90

jQuery 로컬 다운로드

🔗jQuery

 

jQuery

What is jQuery? jQuery is a fast, small, and feature-rich JavaScript library. It makes things like HTML document traversal and manipulation, event handling, animation, and Ajax much simpler with an easy-to-use API that works across a multitude of browsers.

jquery.com

  1. Download jQuery
  2. Download the compressed, production jQuery 3.6.1 클릭
  3. 다른 이름으로 저장
  4. 사용하고자 하는 프로젝트 dir에 이동
  5. html의 head태그에서 src 지정

jQuery CDN 사용

CDN?

<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script> // 구글
<script src="http://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.12.4.min.js"></script> // 마이크로소프트
<script src="https://code.jquery.com/jquery-1.12.4.min.js"></script> // jquery

References.

https://inpa.tistory.com/entry/jQuery-%F0%9F%93%9A-%EC%84%A4%EC%B9%98-%EC%82%AC%EC%9A%A9%EB%B0%A9%EB%B2%95

https://balmostory.tistory.com/181

728x90