2024-10-16

<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<script src="https://code.jquery.com/jquery-3.7.1.js"></script>
<script>
/*
요소 조작 함수
==> 요소를 생성, 복사, 삭제, 속성 변환과 관련된 함수를 제공.
*/
$(function() {
// text() : 선택한 요소에 내의 텍스트를 가져오거나 텍스트를
// 변경할 때 사용하는 함수.
$("h3").text("텍스트 페이지입니다.");
});
</script>
</head>
<body>
<h2>객체 조작 및 생성</h2>
<h3>text()</h3>
</body>
</html>
