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
- 추가납입
- 프론트엔드
- 보험
- 가입
- 프로그래밍
- 웹개발
- 특약
- 급성심근경색증
- 교보생명
- 사망
- javascript
- Vue.js
- PythonProgramming
- 자바스크립트
- 중도인출
- 변환
- 심장질환
- python
- 인출수수료
- 납입
- 코딩
- jQuery
- 수수료
- Java
- 리스트
- 파이썬
- 보험료
- 교보
- 뇌출혈
- 문자열
Archives
- Today
- Total
SeouliteLab
jQuery .hide() 메서드의 활용 예제와 설명 본문
jQuery의 .hide() 메서드는 선택한 요소를 숨김 처리합니다. 이를 통해 웹 페이지에서 요소를 숨기거나 감추는데 사용됩니다. .hide() 메서드의 사용법과 몇 가지 예제를 살펴보겠습니다.
예제 1: 요소 숨기기
<!DOCTYPE html>
<html>
<head>
<title>jQuery .hide() 예제</title>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
</head>
<body>
<div id="box">이 요소가 숨겨집니다.</div>
<script>
$(document).ready(function() {
$("#box").hide(); // 요소를 숨김 처리
});
</script>
</body>
</html>
위 코드에서는 id가 "box"인 요소를 숨김 처리합니다.
예제 2: 요소 숨긴 후 콜백 함수 실행
<!DOCTYPE html>
<html>
<head>
<title>jQuery .hide() 예제</title>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
</head>
<body>
<div id="box">이 요소가 숨겨집니다.</div>
<script>
$(document).ready(function() {
$("#box").hide("slow", function() {
alert("요소가 성공적으로 숨겨졌습니다."); // 숨김 처리 후 콜백 함수 실행
});
});
</script>
</body>
</html>
위 코드에서는 요소를 숨김 처리한 후에 알림창이 뜨도록 설정되어 있습니다.
예제 3: 여러 요소 숨기기
<!DOCTYPE html>
<html>
<head>
<title>jQuery .hide() 예제</title>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<style>
.circle {
width: 100px;
height: 100px;
background-color: red;
margin: 10px;
}
</style>
</head>
<body>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<script>
$(document).ready(function() {
$(".circle").hide(); // 모든 circle 클래스를 가진 요소를 숨김 처리
});
</script>
</body>
</html>
위 코드에서는 클래스가 "circle"인 모든 요소를 숨김 처리합니다.
.hide() 메서드는 선택한 요소를 숨김 처리합니다. 이 메서드를 사용하면 웹 페이지에서 요소를 감추거나 숨길 수 있습니다.
위 예제들에서는 다양한 상황에서 .hide() 메서드를 사용하여 요소를 숨기는 방법을 살펴보았습니다.
'프로그래밍' 카테고리의 다른 글
jQuery jQuery.fx.off 속성 이해와 활용 예제 (0) | 2024.04.01 |
---|---|
jQuery.fx.interval 속성 이해와 활용 예제 (0) | 2024.04.01 |
jQuery .finish() 메서드의 활용 예제와 설명 (0) | 2024.04.01 |
jQuery .fadeToggle() 메서드의 활용 예제와 설명 (0) | 2024.04.01 |
jQuery .fadeTo() 메서드의 활용 예제와 설명 (0) | 2024.04.01 |