Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 추가납입
- 납입
- Java
- 웹개발
- 교보생명
- javascript
- 가입
- 자바스크립트
- 파이썬
- 수수료
- 급성심근경색증
- 인출수수료
- 리스트
- 사망
- 문자열
- 프론트엔드
- 중도인출
- 심장질환
- 교보
- 보험
- 보험료
- PythonProgramming
- 프로그래밍
- 특약
- python
- 변환
- 뇌출혈
- jQuery
- 코딩
- Vue.js
Archives
- Today
- Total
SeouliteLab
jQuery의 .toggleClass() 메서드: 클래스 토글하기 본문
jQuery의 .toggleClass() 메서드는 선택한 요소에서 클래스의 존재 여부를 확인하고, 클래스가 존재하지 않으면 추가하고 존재하면 제거합니다. 이를 통해 요소의 클래스를 쉽게 토글할 수 있습니다.
예제 1: 클래스 토글하기
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>jQuery .toggleClass() 메서드 예제</title>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script>
$(document).ready(function(){
// 클래스 토글하기 예제
$('#element1').click(function(){
$(this).toggleClass('active');
});
});
</script>
<style>
.active {
color: red;
}
</style>
</head>
<body>
<div id="element1">클릭하여 클래스 토글</div>
</body>
</html>
<!-- 출력 결과 -->
<!-- <div id="element1">클릭하여 클래스 토글</div> -->
예제 2: 조건에 따라 클래스 토글하기
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>jQuery .toggleClass() 메서드 예제</title>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script>
$(document).ready(function(){
// 조건에 따라 클래스 토글하기 예제
var condition = true;
$('#element2').click(function(){
if (condition) {
$(this).toggleClass('active');
}
});
});
</script>
<style>
.active {
color: blue;
}
</style>
</head>
<body>
<div id="element2">조건에 따라 클래스 토글</div>
</body>
</html>
<!-- 출력 결과 -->
<!-- <div id="element2">조건에 따라 클래스 토글</div> -->
예제 3: 다중 클래스 토글하기
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>jQuery .toggleClass() 메서드 예제</title>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script>
$(document).ready(function(){
// 다중 클래스 토글하기 예제
$('#element3').click(function(){
$(this).toggleClass('active highlight');
});
});
</script>
<style>
.active {
color: red;
}
.highlight {
background-color: yellow;
}
</style>
</head>
<body>
<div id="element3">다중 클래스 토글</div>
</body>
</html>
<!-- 출력 결과 -->
<!-- <div id="element3">다중 클래스 토글</div> -->
'프로그래밍' 카테고리의 다른 글
jQuery의 callbacks.disable() 메서드: 콜백 함수 비활성화하기 (0) | 2024.03.27 |
---|---|
jQuery의 .val() 메서드: 입력 요소의 값 가져오기 및 설정하기 (0) | 2024.03.27 |
jQuery의 .removeProp() 메서드: 속성 제거하기 (0) | 2024.03.27 |
jQuery의 .removeClass() 메서드: 클래스 제거하기 (0) | 2024.03.27 |
jQuery의 .removeAttr() 메서드: 속성 제거하기 (0) | 2024.03.27 |