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>