노래하듯 이야기하고, 춤추듯 정복하라.

[jQuery] jQuery 다운로드 및 사용 본문

프로그래밍/jQuery

[jQuery] jQuery 다운로드 및 사용

hyeoke 2018. 7. 28. 18:12

jQuery사용하기


다운로드

http://jquery.com/download/

- 위 홈페이지에 접속하여 Download the uncompressed, development jQuery 3.3.1 클릭하여 파일 다운로드


API Documnets

https://api.jquery.com/



html 파일에 임포트하기

같은 디렉토리에 다운로드한 jquery파일을 위치시키고 html 파일의 head태그 안쪽에 아래와 같이 위치시킨 jquery파일을 임포트 한다.

<script type='text/javascript' src='jquery-3.3.1.js'></script> 


임포트한 jquery파일이 잘 로드 되는지 확인하기

브라우저에서 개발자도구 F12클릭 -> Network 탭 -> 아래사진과 같이 jquery 라이브러리가 잘 로드되는지 확인할 것.






Comments