SeouliteLab

jQuery의 .hasClass() 메서드: 클래스 유무 확인하기 본문

프로그래밍

jQuery의 .hasClass() 메서드: 클래스 유무 확인하기

Seoulite Lab 2024. 3. 27. 10:52

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 -->