jQuery onload 선언

Grace Goh·2023년 6월 5일
0

jQuery

목록 보기
5/6

jQuery는 $()로 선언한다.
onload는 위에서 아래까지 로딩된 후 호출된다. 다음 2가지 방법이 가능하다.

        $(document).ready(function(){
            alert('내용');
        })

또는

		$(function(){
            alert('중앙');
        })


기본적인 환경 구성

<!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.5.1/jquery.min.js"></script>
    <script>
      
        $(function() {

        })

    </script>
</head>
<body>
</body>
</html>
profile
Español, Inglés, Coreano y Python

0개의 댓글