OneDev

jQuery 개요 본문

WEB/jQuery

jQuery 개요

one_dev 2023. 2. 15. 14:10

◎ JQuery 개요

  • 모든 브라우저에서 동작하는 자바스크립트 라이브러리
  • 오픈소스 라이브러리 (무료로 사용가능)
  • jQuery의 제작 목표 
    • DOM과 관련된 처리 쉽게 구현
    • 일괄된 이벤트 연결 쉽게 구현
    • 시각적 효과 쉽게 구현
    • Ajax 어플리케이션 쉽게 개발

◎ JQuery 다운로드 : 아래 사이트 접속해 다운로드 가능

http://jquery.com 

 

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

◎ JQuery 파일명

  1. OO.js 파일 : 
    • Uncompressed 버전
  2. OO.min.js 파일
    • Minified 버전(용량 5배 이상 차이)
    • 파일의 용량을 최소화 하기 위해 압축한 파일

◎ 오프라인에서 JQuery 사용

→ 반드시 다운받아 사용

 

다운로드한 jQuery 라이브러리 사용하기(HTML페이지)

CDN으로 jQuery 사용하기

  • CDN : Content Delevery Network 의 약자
  • 사용자에게 간편하게 콘텐츠 제공하는 방식 의미
  • 구글 , 마이크로소프트 , jQuery 측에서 사용자가 jQuery 를 사용하기 편하게 콘텐츠 제
  • 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

CDN으로 jQuery 사용하기

'WEB > jQuery' 카테고리의 다른 글

[Ajax] async : 비동기식/동기식 처리  (0) 2023.03.27
[jQuery] jQuery 기본선택자  (0) 2023.03.22
[jQuery] $(document).ready()  (0) 2023.02.15
Comments