본문 바로가기
jquery

JQuery

by 신방동불주먹 2022. 11. 15.

- javascript 라이브러리

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

다운로드 

or

cdn 방식

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

head 내 title 아래 삽입

 

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title> 
    
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.1/jquery.min.js"></script>

</head>
<body>

</body>
</html>

'jquery' 카테고리의 다른 글

JQuery_배열 관련 메서드  (0) 2022.11.21
JQuery_효과 메서드  (0) 2022.11.18
JQuery_탐색 선택자  (0) 2022.11.17
JQuery_이벤트  (0) 2022.11.17
JQuery_기본 선택자  (0) 2022.11.15