Web/jQuery
[jQuery] 제이쿼리란?
인포꿀팁
2020. 11. 13. 11:58
jQuery
제이쿼리는 빠르고 간결한 JavaScript Library 개념이다.
HTML document traversing(검색), 이벤트 처리, 애니메이션, Ajax를 단순화하여 빠른 웹 개발을 가능하게 한다.
사용법:
1) 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
2)CDN(Content Delivery Network) 을 이용하여 제이쿼리 라이브러리에 접근하는 방법
<script type="text/javascript" src="http://code.jquery.com/jquery-3.5.1.min.js"></script>