상세 컨텐츠

본문 제목

jQuery_1

jQuery

by 일동일동 2023. 2. 17. 15:58

본문

728x90
반응형
<!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>jquery</title>
    <script src="https://code.jquery.com/jquery-3.6.3.min.js" integrity="sha256-pvPw+upLPUjgMXY0G+8O0xUf+/Im1MZjXxxgOcBQBXU=" crossorigin="anonymous"></script>
</head>
<body>
    <script>
        $(function(){
            alert('jquery 테스트!');
            console.log('jquery 테스트!');
        });
    </script>
</body>
</html>


--------------------------------------------------------------------------------------------------------------------------------

jQuery
공식사이트 : https://jquery.com/

cdn(Content Delivery Network)
'jquery cdn 검색'


$(function()){
});
window.onload = function(){         // window가 html을 다 읽은 후에 function 실행
}
$(document).ready(function(){
});
반응형