Spring Framework

jQuery 기초 - 1

na_o 2021. 7. 22. 17:09
728x90

- jQuery

미리 작성된 자바스크립트 함수 모음집

많이 쓰이는 HTML, CSS 조작 함수를 미리 만들어서 제공해주는 것

사용방법:

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

 

- jQuery import

jQuery를 사용하려면 스크립트를 import 해야함

HTML head 태그에 넣어주기

<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>

 

- jQuery 사용 법

$로 시작. 괄호 안에 선택자를 적으면 됨

.show()는 jQuery 함수

$("#contents").show();

 

 

 

'Spring Framework' 카테고리의 다른 글

타임라인서비스) 클라이언트 설계하기  (0) 2021.07.22
jQuery 기초 -2  (0) 2021.07.22
Javascript 기초 - 2  (0) 2021.07.22
Javascript 기초 - 1  (0) 2021.07.21
타임라인서비스) Controller 만들기  (0) 2021.07.21