- 전체
- HTML
- Web Design (웹디자인)
- XE 응용 개발
- wordpress plugin dev
- Javascript & JavaScript Application
- MEAN Stack : full stack javascript
- angular js & ionic framework
- bootstrap
- WebGL, Three.js and Babylon.js
- restful api design
- mobile web
- node.js 응용
- Cloud Service 응용
- 웹 어셈블리 개발 [WASM, WebAssembly]
- 마이크로서비스, MSA (microservice architecture)
- WebGL / WebGPU
- next.js 개발
- micro frontend (마이크로프론트앤드)
- 전자상거래/쇼핑몰
- 서버 클라우드 (aws, azure, google)
JQuery JQuery로 radio 버튼의 값 가져오기 : How to get the value of selected radio button in a group using jQuery
2019.01.10 17:41
JQuery로 radio 버튼의 값 가져오기
How to get the value of selected radio button in a group using jQuery
Answer: Use the jQuery :checked selector
You can use the jQuery :checked selector in combination with the val() method to find the value of certain radio button inside a group. Here's an example:
Example
Try this code »-
-
<html lang="en">
-
<head> -
<meta charset="UTF-8">
-
<title>jQuery Get Selected Radio Button Value</title>
-
<script src="https://code.jquery.com/jquery-1.12.4.min.js"></script>
-
<script type="text/javascript">
-
$(document).ready(function(){ -
$("input[type='button']").click(function(){ -
var radioValue = $("input[name='gender']:checked").val(); -
if(radioValue){ -
alert("Your are a - " + radioValue); -
} -
}); -
-
}); -
</script> -
</head> -
<body> -
<h4>Please select your gender.</h4> -
<p> -
<label><input type="radio" name="gender" value="male">Male</label> -
<label><input type="radio" name="gender" value="female">Female</label> -
</p> -
<p><input type="button" value="Get Value"></p> -
</body> -
</html>
[출처] https://www.tutorialrepublic.com/faq/how-to-get-the-value-of-selected-radio-button-using-jquery.php
본 웹사이트는 광고를 포함하고 있습니다.
광고 클릭에서 발생하는 수익금은 모두 웹사이트 서버의 유지 및 관리, 그리고 기술 콘텐츠 향상을 위해 쓰여집니다.
광고 클릭에서 발생하는 수익금은 모두 웹사이트 서버의 유지 및 관리, 그리고 기술 콘텐츠 향상을 위해 쓰여집니다.
댓글 0
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 수 |
|---|---|---|---|---|
| 5 |
[REST API] REST API 이해하기
| 졸리운_곰 | 2018.01.21 | 346 |
| 4 | RESTful API를 설계하기 위한 디자인 팁 | 졸리운_곰 | 2018.01.21 | 528 |
| 3 |
REST API의 이해와 설계 #3 API 보안
| 졸리운_곰 | 2018.01.21 | 431 |
| 2 | REST API 이해와 설계 #2 API 설계 가이드 | 졸리운_곰 | 2018.01.21 | 71276 |
| 1 |
REST API의 이해와 설계 #1-개념 소개
| 졸리운_곰 | 2018.01.21 | 334 |

