[jQuery] 1. jQuery (제이쿼리) 소개

2024. 2. 1. 10:44웹/프론트-백-javascript

728x90
반응형

 

https://releases.jquery.com/

 

jQuery CDN

jQuery CDN – Latest Stable Versions jQuery Core Showing the latest stable release in each major branch. See all versions of jQuery Core. jQuery 3.x jQuery 2.x jQuery 1.x jQuery Migrate jQuery UI Showing the latest stable release for the current and legac

releases.jquery.com

<script src="https://code.jquery.com/jquery-3.7.1.min.js" integrity="sha256-/JqT3SQfawRcv/BIHPThkBvs0OEvtFFmqPF/lYI/Cxo=" crossorigin="anonymous"></script>

 

minified 클릭하여 cdn 복사하여 코드를 html 파일에 입력해준다

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>    
    <script src="https://code.jquery.com/jquery-3.7.1.min.js" integrity="sha256-/JqT3SQfawRcv/BIHPThkBvs0OEvtFFmqPF/lYI/Cxo=" crossorigin="anonymous"></script>
</head>
<body>
    <h1>왕초보 홈페이지만들기</h1>
    <h1>제이쿼리 jQuery</h1>
    <h1>환영합니다.</h1>
</body>
<script>
    $(document).ready(function(){
        $("h1").click(function(){
            $(this).hide();
        })
    })
</script>
</html>

 


참조사이트

https://www.youtube.com/watch?v=0m6DWr1CxeE&list=PLTb3qGCzYjS2L-unwSFbT3jBeUCmh7lcb

 

반응형

' > 프론트-백-javascript' 카테고리의 다른 글

클로저  (2) 2023.12.07