카테고리 없음
[jQuery] 설명 및 임포트 방법
이즈 life
2021. 9. 5. 19:33
jQuery : java script 모음집
jQuery는 Javascript와 다른 특별한 소프트웨어가 아니라 미리 작성된 Javascript 코드입니다. 전문 개발자들이
짜둔 코드를 가져와서 사용하는 것임을 기억해야한다.
(단, jQuery 사용 전에는 "임포트"를 해 줘야 하며 boot strap을 임포트 한 경우에는 제외)
jQuery를 임포트하기 위하 소스는 아래 링크 Google CDN에서 받을 수 있다.
URL : https://www.w3schools.com/jquery/jquery_get_started.asp
jQuery Get Started
jQuery Get Started Adding jQuery to Your Web Pages There are several ways to start using jQuery on your web site. You can: Download the jQuery library from jQuery.com Include jQuery from a CDN, like Google Downloading jQuery There are two versions of jQuer
www.w3schools.com
아래 코드를 <head> 안에 임포트 하면 된다.
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>