SeouliteLab

jQuery의 .innerHeight() 메서드: 요소의 내부 높이를 가져오기 본문

프로그래밍

jQuery의 .innerHeight() 메서드: 요소의 내부 높이를 가져오기

Seoulite Lab 2024. 3. 27. 09:18

jQuery의 .innerHeight() 메서드는 선택한 요소의 내부 높이를 가져옵니다. 이는 요소의 내부 콘텐츠와 패딩(padding)의 높이를 포함합니다. 이 메서드는 보이는 콘텐츠를 기반으로 하며, 가상의 상자 모델(Virtual Box Model)을 사용하여 계산합니다.

예제:

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>jQuery .innerHeight() 메서드 예제</title>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script>
$(document).ready(function(){
  // 내부 높이 가져오기 예제
  var innerHeight = $('.box').innerHeight();
  console.log('내부 높이:', innerHeight); // 출력 결과: 내부 높이: 120

  // 내부 높이 설정하기 예제
  $('.box').innerHeight(150);
  var newInnerHeight = $('.box').innerHeight();
  console.log('변경된 내부 높이:', newInnerHeight); // 출력 결과: 변경된 내부 높이: 150
});
</script>
<style>
.box {
  width: 100px;
  height: 100px;
  padding: 10px;
  background-color: #f0f0f0;
}
</style>
</head>
<body>

<div class="box"></div>

</body>
</html>