Notice
Recent Posts
Recent Comments
Link
SeouliteLab
jQuery의 .innerHeight() 메서드: 요소의 내부 높이를 가져오기 본문
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>
'프로그래밍' 카테고리의 다른 글
jQuery의 .addClass() 메서드: 요소에 클래스 추가하기 (0) | 2024.03.27 |
---|---|
jQuery의 .width() 메서드: 요소의 너비 가져오기 (0) | 2024.03.27 |
jQuery의 .height() 메서드: 요소의 높이를 가져오고 설정하기 (0) | 2024.03.27 |
jQuery의 click 이벤트 핸들러 활용하기 (0) | 2024.03.27 |
jQuery의 .css() 메서드를 활용하여 요소 스타일 변경하기 (0) | 2024.03.26 |