라디오 상자 값 가져오기

869 단어
<script type="text/javascript">
	function getRadioValue() {
		if (jQuery('#a').is("input:checked")) {
			alert(jQuery('#a').val());
		} else if (jQuery('#b').is("input:checked")) {
			alert(jQuery('#b').val());
		}
	}
	$(document).ready(function() {
		$("#a").bind("click", getRadioValue);
		$("#b").bind("click", getRadioValue);
	});
</script>
 
 
<body>
		<input type="radio" id="a" name="radio" value="a" />
		a
		<input type="radio" id="b" name="radio" value="b" />
		b
	</body>

좋은 웹페이지 즐겨찾기