💡 jQuery를 적용해보자~!
⌨️
<script type = "text/javascript" src = "제이쿼리 문서 경로"> </script>
<script src="http://code.jquery.com/jquery-3.6.0.min.js" type="text/javascript"></script>
<script type="text/javascript">
$(function(){ // (document).ready 생략 가능
})
</script>
개발자 도구로 들어가 Console을 확인했을 때 오류가 안뜨면 잘 된 것이다.
<!DOCTYPE html>
<html lang="ko">
<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>제이쿼리 템플릿</title>
<script src="http://code.jquery.com/jquery-3.6.0.min.js" type="text/javascript"></script>
<script type="text/javascript">
$(function(){
})
</script>
</head>
<body>
</body>
</html>