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
- 변환
- PythonProgramming
- 추가납입
- 자바스크립트
- 리스트
- 보험
- 웹개발
- 특약
- 뇌출혈
- 프로그래밍
- jQuery
- 사망
- 인출수수료
- 프론트엔드
- Vue.js
- Java
- 수수료
- 납입
- 파이썬
- javascript
- 심장질환
- 교보생명
- 급성심근경색증
- 중도인출
- python
- 교보
- 가입
- 보험료
- 문자열
- 코딩
Archives
- Today
- Total
SeouliteLab
jQuery의 :input 선택자 활용하기 본문
jQuery의 :input 선택자는 모든 입력 요소를 선택하는 데 사용됩니다. 입력 요소에는 <input>, <textarea>, <select>, <button> 등이 포함됩니다. 이 선택자를 활용하여 웹 페이지에서 입력 요소를 선택하고 조작할 수 있습니다.
예제 1: 모든 입력 요소의 값을 변경하기
<!DOCTYPE html>
<html>
<head>
<title>모든 입력 요소의 값을 변경하기</title>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script>
$(document).ready(function(){
$(":input").val("기본값");
});
</script>
</head>
<body>
<input type="text">
<textarea></textarea>
<select>
<option>옵션 1</option>
<option>옵션 2</option>
</select>
</body>
</html>
설명: 위 예제는 문서 내의 모든 입력 요소의 값을 "기본값"으로 설정합니다.
예제 2: 특정 클래스를 가진 입력 요소 선택하기
<!DOCTYPE html>
<html>
<head>
<title>특정 클래스를 가진 입력 요소 선택하기</title>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script>
$(document).ready(function(){
$(".custom-input").css("background-color", "lightblue");
});
</script>
<style>
.custom-input {
width: 200px;
padding: 5px;
}
</style>
</head>
<body>
<input type="text" class="custom-input">
<textarea class="custom-input"></textarea>
</body>
</html>
설명: 이 예제는 클래스가 "custom-input"인 입력 요소에 배경색을 적용하여 시각적으로 구분합니다.
예제 3: 특정 타입의 입력 요소 선택하기
<!DOCTYPE html>
<html>
<head>
<title>특정 타입의 입력 요소 선택하기</title>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script>
$(document).ready(function(){
$(":input[type='checkbox']").prop("checked", true);
});
</script>
</head>
<body>
<input type="checkbox" id="checkbox1"> 체크박스 1<br>
<input type="checkbox" id="checkbox2"> 체크박스 2<br>
<input type="text" id="text1" value="텍스트 입력">
</body>
</html>
설명: 이 예제는 타입이 "checkbox"인 입력 요소들을 선택하여 모두 체크합니다.
'프로그래밍' 카테고리의 다른 글
jQuery의 :last-child 선택자 활용하기 (0) | 2024.04.12 |
---|---|
jQuery의 :lang() 선택자 활용하기 (0) | 2024.04.12 |
jQuery의 :image 선택자 활용하기 (0) | 2024.04.12 |
jQuery의 ID 선택자 ("#id") 활용하기 (0) | 2024.04.12 |
jQuery의 :hidden 선택자 활용하기 (0) | 2024.04.12 |