디자인과 개발 그 사이

jQuery 사용한다고 선언하기 - 최신 버전의 jQuery 스크립트 선언 본문

jQuery

jQuery 사용한다고 선언하기 - 최신 버전의 jQuery 스크립트 선언

짧은 양다리 2023. 7. 11. 11:23
728x90

jQuery 사용한다고 선언하기

 

1. 제이퀴리 사이트 API를 다운받아 경로 설정하여 사용

- 제이퀴리 사이트

https://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

 

2. <head>에 jQuery에서 제공하는 최신 버전의 jQuery url 스크립트 선언

<script src="http://code.jquery.com/jquery-latest.js"></script>

 

728x90