<!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>
</head>
<body>
<script src="https://code.jquery.com/jquery-3.6.0.min.js" integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4=" crossorigin="anonymous"></script>
</body>
</html>
<p class="hello">안녕</p>
<script>
document.querySelector(".hello").innerHTML = "바보";
</script>
<p class="hello">안녕</p>
<!-- <script>
document.querySelector(".hello").innerHTML = "바보";
</script> -->
<script>
$(".hello").html("바보");
</script>
<script>
$(".hello").html("바보");
$(".hello").css('color', 'red');
</script>
$('.hello').html('바보');
$("#test").on("click", callback())
on 이다. 그냥 개짧다.
jQuery사용 시 hide, slideup() 등등 멋진 애니메이션을 간단한 코드로 처리가 가능해진다.