Notice
Recent Posts
Recent Comments
Link
SeouliteLab
jQuery의 .hasClass() 메서드: 클래스 유무 확인하기 본문
jQuery의 .hasClass() 메서드는 선택한 요소가 특정 클래스를 가지고 있는지 여부를 확인합니다. 이를 통해 요소의 클래스를 조건에 따라 동적으로 처리할 수 있습니다.
예제 1: 클래스 유무 확인하기
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>jQuery .hasClass() 메서드 예제</title>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script>
$(document).ready(function(){
// 클래스 유무 확인하기 예제
var hasClass = $('#element1').hasClass('active');
console.log('클래스 유무:', hasClass); // 출력 결과: 클래스 유무: true
});
</script>
<style>
.active {
color: blue;
}
</style>
</head>
<body>
<div id="element1" class="active">활성화된 요소</div>
</body>
</html>
<!-- 출력 결과 -->
<!-- 클래스 유무: true -->
예제 2: 조건부로 클래스 추가하기
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>jQuery .hasClass() 메서드 예제</title>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script>
$(document).ready(function(){
// 조건부로 클래스 추가하기 예제
if ($('#element2').hasClass('active')) {
$('#element2').text('활성화된 요소');
} else {
$('#element2').text('비활성화된 요소');
}
});
</script>
<style>
.active {
color: blue;
}
</style>
</head>
<body>
<div id="element2">활성화된 요소</div>
</body>
</html>
<!-- 출력 결과 -->
<!-- 비활성화된 요소 -->
예제 3: 반복문을 이용한 클래스 유무 확인
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>jQuery .hasClass() 메서드 예제</title>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script>
$(document).ready(function(){
// 반복문을 이용한 클래스 유무 확인 예제
$('.item').each(function(){
var hasClass = $(this).hasClass('active');
console.log('클래스 유무:', hasClass);
});
});
</script>
<style>
.active {
color: blue;
}
</style>
</head>
<body>
<div class="item">요소 1</div>
<div class="item active">요소 2</div>
<div class="item">요소 3</div>
</body>
</html>
<!-- 출력 결과 -->
<!-- 클래스 유무: false -->
<!-- 클래스 유무: true -->
<!-- 클래스 유무: false -->
'프로그래밍' 카테고리의 다른 글
jQuery의 .prop() 메서드: 속성 조작하기 (0) | 2024.03.27 |
---|---|
jQuery의 .html() 메서드: 요소의 HTML 내용 조작하기 (0) | 2024.03.27 |
jQuery의 .attr() 메서드: 속성 조작하기 (0) | 2024.03.27 |
jQuery의 .addClass() 메서드: 요소에 클래스 추가하기 (0) | 2024.03.27 |
jQuery의 .width() 메서드: 요소의 너비 가져오기 (0) | 2024.03.27 |