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
- 델파이 기법
- EAI
- 정보처리기사 실기
- 키보드 이벤트
- 정처기
- 정처기 실기
- 라디오 버튼
- 리눅스
- 소프트웨어
- 워크스루
- 자바스크립트
- 비동기
- input
- 인터페이스
- Ajax
- 정보처리기사
- 브레인스토밍
- 인스펙션
- 서버
- 모듈
- rest
- SSL/TLS
- 동기
- esb
- 트리거
- 형상관리
- 모듈화
- javascript
- S-HTTP
- 프로시저
Archives
- Today
- Total
방구석 상상코딩
[Javascript / jQuery] input Radio Button 값 가져오기/설정하기 본문
Spring Boot/JavaScript
[Javascript / jQuery] input Radio Button 값 가져오기/설정하기
알 수 없는 사용자 2022. 1. 22. 16:36input 태그 생성
<input type="radio" value="값1">값1</input>
<input type="radio" value="값2">값2</input>
<input type="radio" value="값3">값3</input>
<input type="radio" name ="radiobox" value="A">A</input>
<input type="radio" name ="radiobox" value="B">B</input>
<input type="radio" name ="radiobox" value="C">C</input>
<button type="button" id="radiobutton">값 가져오기</button>
Radio Button 값 확인
$("input[name='radio의 name값']:checked").val();
Radio Button 1개 선택
- 동일한 name 속성을 추가하여 1개만 선택할 수 있도록 한다.
$("input[name='radio의 name값']:checked").
$(document).ready(function () {
$('#radiobutton').click(function () {
var radioVal = $('input[name="radiobox"]:checked').val();
});
});
Radio Button 다중 선택
- 서로 다른 name 속성을 추가하여 다중 선택을 할 수 있도록 한다.
$(document).ready(function () {
$('#radiobutton').click(function () {
var radioVal1 = $('input[name="radio1"]').val();
var radioVal2 = $('input[name="radio2"]').val();
var radioVal3 = $('input[name="radio3"]').val();
//console.log(radioVal1);
//console.log(radioVal2);
//console.log(radioVal3);
});
});
Radio Button 강제로 선택/해제
- radio로 설정한 값에 한해서(범위 내에서) 지정한 radio 값을 가져온다.
- 다른 radio를 선택해도 지정한 radio가 선택된다.
$("input[name='radio의 name'][value='선택할 값']").prop("checked", true); // 선택
$("input[name='radio의 name'][value='선택할 값']").prop("checked", false; // 해제
$(document).ready(function () {
$('#radiobutton').click(function () {
var radioVal = $("input[name='radiobox'][value='B']").prop("checked", true);
//alert(radioVal.val());
//console.log(radioVal.val());
});
});
https://qkrrudtjr954.github.io/jquery/2018/01/25/get-radio-and-check.html
https://nobacking.tistory.com/37
https://curryyou.tistory.com/215
https://qkrrudtjr954.github.io/jquery/2018/01/25/get-radio-and-check.html
https://myhappyman.tistory.com/91?category=866066
'Spring Boot > JavaScript' 카테고리의 다른 글
[jQuery] check 박스 값 가져오기 (0) | 2022.01.24 |
---|---|
[HTML] select 박스 값 가져오기 (0) | 2022.01.23 |
[HTML] input 태그 종류 (0) | 2022.01.18 |
[JavaScript / jQuery] input text 값 가져오기/설정하기 (0) | 2022.01.18 |
[JavaScript] ajax와 form 전송의 차이 (0) | 2022.01.12 |