728x90
반응형
다음은 각각의 HTML 폼 요소에 접근하는 방법입니다.
- Select Box:
- jQuery: $("#selectBoxId")
- JavaScript: document.getElementById("selectBoxId")
- Radio Button:
- jQuery: $("input[name='radioButtonName']:checked")
- JavaScript: document.querySelector("input[name='radioButtonName']:checked")
- Checkbox:
- jQuery: $("#checkBoxId")
- JavaScript: document.getElementById("checkBoxId")
- Textarea:
- jQuery: $("#textareaId")
- JavaScript: document.getElementById("textareaId")
모든 요소에 대해 접근하는 방법은 jQuery를 사용하는 것이 좋습니다. 다음은 jQuery를 사용하여 각각의 요소에 대해 접근하는 방법입니다.
- Select Box:
- jQuery: $("#selectBoxId").val()
- Radio Button:
- jQuery: $("input[name='radioButtonName']:checked").val()
- Checkbox:
- jQuery: $("#checkBoxId").prop("checked")
- Textarea:
- jQuery: $("#textareaId").val()
또한, 각 요소에 이벤트를 바인딩하는 방법은 다음과 같습니다.
- Select Box:
- jQuery: $("#selectBoxId").change(function() { ... })
- Radio Button:
- jQuery: $("input[name='radioButtonName']").change(function() { ... })
- Checkbox:
- jQuery: $("#checkBoxId").change(function() { ... })
- Textarea:
- jQuery: $("#textareaId").change(function() { ... })
728x90
반응형
'프로그래밍 > jquery' 카테고리의 다른 글
모바일웹에서 지도 좌표 알아 내는 법 (0) | 2023.04.19 |
---|---|
CKEditor5에서 textarea 값을 가져오는 방법 (0) | 2023.04.15 |
CKEditor4에서 textarea 값을 가져오는 방법 (0) | 2023.04.13 |
select2()에서 옵션 선택 방법 (0) | 2023.04.12 |
html input 파일 이미지 미리보기 구현(멀티) 미리보기삭제 (0) | 2021.11.23 |