CLASS_JQuery
7월 23일_JQuery(연결하기)
awesong
2024. 7. 23. 11:52
728x90
# 제이쿼리(jQuery)
- 자바스크립트 언어를 간편하게 사용할 수 있도록 단순화시킨 오픈 소스 기반의 자바스크립트 라이브러리
Download jQuery | jQuery
Download jQuery link Latest version To locally download these files, right-click the link and select "Save as..." from the menu. Download the compressed, production version: Download jQuery 3.7.1 The slim build is a smaller version, that excludes the ajax
jquery.com
- 제이쿼리 라이브러리 다운 사이트
다운로드 후 페이지 소스 - 메모장에 붙여넣기 - 다른이름으로 저장 - 확장자 .js로 저장
# 제이쿼리 파일 불러오기
-- 저장된 파일을 불러오는 방법
<script src="jquery-3.7.1.js"></script>
-- 사이트에서 링크로 불러오기(CON 호스트 사용)
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>