방구석 상상코딩

[Javascript / jQuery] input Radio Button 값 가져오기/설정하기 본문

Spring Boot/JavaScript

[Javascript / jQuery] input Radio Button 값 가져오기/설정하기

알 수 없는 사용자 2022. 1. 22. 16:36

input 태그 생성

<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

 

[jQuery] 라디오 버튼, 체크박스 값 가져오기 · Parker

 

qkrrudtjr954.github.io

 

https://nobacking.tistory.com/37

 

[Javascript/Jquery] 라디오버튼(radio button) 사용법 정리 (라디오버튼 선택/ 라디오버튼 해제/ 라디오버

라디오 버튼 라디오버튼의 기본 폼과 선택, 해제, 선택된값 불러오기 등을 정리해보겠습니다. 1) 라디오버튼 기본 폼 1 2 3 4 5 6    One    Two    Three    Four Colored by Color Scripter cs 위의 코..

nobacking.tistory.com

 

https://mkil.tistory.com/275

 

[HTML] 라디오버튼/radio/label태그/개별선택/중복선택

111111 2222222 1111 2222 3333 1111 2222 3333 1번 라디오버튼  그룹 설명 태그는 라디오 버튼이나 체크박스를 클릭할때 해당 버튼을 클릭하지 않고 버튼옆에 텍스트를 클릭해도 그 버튼이 선택되도록 해

mkil.tistory.com

 

 

https://curryyou.tistory.com/215

 

[HTML] input:radio 여러개(다중) 선택될 때, 하나만(단일) 선택 방법

radio 타입의  input 태그를 사용하다보면, 가끔(?) 라디오 버튼이 한번에 여러개가 선택되는 문제가 발생할 때가 있다. (물론 의도할 때도 있지만...) 즉, 아래와 같이 라디오 버튼을 만들면, 10대 20

curryyou.tistory.com

 

https://qkrrudtjr954.github.io/jquery/2018/01/25/get-radio-and-check.html

 

[jQuery] 라디오 버튼, 체크박스 값 가져오기 · Parker

 

qkrrudtjr954.github.io

 

https://myhappyman.tistory.com/91?category=866066

 

jQuery - radio, checkBox값 가져오기, 선택하기, 제어 등

jQuery를 통해 radio, checkBox의 선택된 값을 가져오거나 강제로 선택되게 하는 방법을 알아보겠습니다. radio 제어 예제로 이러한 smartPhone.html 있다고 가정하고 진행하겠습니다. 스마트폰 통신사 : SKT

myhappyman.tistory.com