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
- 보험
- 뇌출혈
- jQuery
- javascript
- Vue.js
- 프론트엔드
- 웹개발
- 가입
- 수수료
- 중도인출
- 코딩
- 변환
- 문자열
- 급성심근경색증
- 파이썬
- 교보
- 교보생명
- python
- 자바스크립트
- 특약
- PythonProgramming
- 사망
- Java
- 심장질환
- 납입
- 리스트
- 추가납입
- 인출수수료
- 보험료
- 프로그래밍
Archives
- Today
- Total
SeouliteLab
jQuery의 jQuery.ready() 메서드: 문서가 준비되면 실행되는 이벤트 핸들러 본문
jQuery의 jQuery.ready() 메서드는 문서 객체 모델(DOM)이 완전히 로드되고 초기화된 후에 실행할 코드를 정의하는 데 사용됩니다. 이 메서드를 사용하면 HTML 문서의 모든 요소가 로드된 후에 JavaScript 코드를 실행할 수 있어서 안전하고 일관된 방식으로 코드를 작성할 수 있습니다.
예제 1: jQuery.ready()를 사용하여 문서가 준비되면 메시지 출력하기
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>jQuery.ready() 메서드 예제</title>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script>
// jQuery.ready()를 사용하여 문서가 준비되면 실행될 코드 정의
jQuery(document).ready(function(){
alert("문서가 준비되었습니다!");
});
</script>
</head>
<body>
<!-- HTML 내용 -->
</body>
</html>
<!-- 출력 결과 -->
<!-- 문서가 준비되면 경고창이 표시됨 -->
예제 2: jQuery.ready()를 사용하여 다양한 동작 수행하기
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>jQuery.ready() 메서드 예제</title>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script>
// jQuery.ready()를 사용하여 문서가 준비되면 실행될 코드 정의
jQuery(document).ready(function(){
// 버튼 클릭 시 메시지 변경
jQuery("button").click(function(){
jQuery("p").text("버튼이 클릭되었습니다!");
});
// 문서가 준비되면 로그에 메시지 출력
console.log("문서가 준비되었습니다!");
});
</script>
</head>
<body>
<button>클릭하세요</button>
<p>여기에 메시지가 표시됩니다.</p>
</body>
</html>
<!-- 출력 결과 -->
<!-- 버튼 클릭 시 메시지 변경 -->
<!-- 콘솔에 "문서가 준비되었습니다!" 메시지 출력 -->
예제 3: jQuery()를 사용하여 jQuery.ready() 축약형 사용하기
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>jQuery.ready() 축약형 예제</title>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script>
// jQuery()를 사용하여 문서가 준비되면 실행될 코드 정의
jQuery(function(){
alert("문서가 준비되었습니다!");
});
</script>
</head>
<body>
<!-- HTML 내용 -->
</body>
</html>
<!-- 출력 결과 -->
<!-- 문서가 준비되면 경고창이 표시됨 -->
'프로그래밍' 카테고리의 다른 글
jQuery .scrollLeft() 메서드: 요소의 수평 스크롤 위치 가져오기 및 설정하기 (0) | 2024.03.30 |
---|---|
jQuery .scrollTop() 메서드: 요소의 수직 스크롤 위치 가져오기 및 설정하기 (0) | 2024.03.30 |
jQuery의 jQuery.noConflict() 메서드: 충돌 회피를 위한 jQuery 버전 관리 (0) | 2024.03.27 |
jQuery의 jQuery.holdReady() 메서드: 문서의 준비 여부 조절하기 (0) | 2024.03.27 |
jQuery의 jQuery.Callbacks() 메서드: 콜백 함수 관리를 위한 다목적 유틸리티 (0) | 2024.03.27 |