jquery radio
當前實例版本:33 0 評論 907 瀏覽 發布於:2013年11月23 07:48 編輯+新實例

使用 jquery獲取radio的值, 最重要的是掌握 jquery 選擇器的使用,在一個表單中我們通常是要獲取被選中的那個 radio 項的值,所以要加checked來篩選,比如有以下的一些radio項:

1.radionjquery獲取radio的值
2.jquery獲取checkbox的值
3.radionjquery獲取select的值

要想獲取某個radio的值有以下的幾種方法,直接給出代碼:

1、$('input[name="testradio"]:checked').val();

2、$('input:radio:checked').val();
3、$('input[@name="testradio"][checked]');
4、$('input[name="testradio"]').filter(':checked');

差不多挺全的了,如果我們要遍曆name為testradio的所有radio呢,代碼如下

$('input[name="testradio"]').each(function(){
alert(this.value);
});
如果要取具體某個radio的值,比如第二個radio的值,這樣寫:
$('input[name="testradio"]:eq(1)').val()

通過修改運行下麵的實例,加深印象:

<html>
<head>
<script type="text/javascript" 
src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.0/jquery.min.js"></script>
<script
 type="text/javascript">
$(function(){
	$('#go').click(function(){
		var radio = $('input[name="testradio"]').filter(':checked');
		if(radio.length)
		alert(radio.val());
		else
		alert('請選擇一個radio');
		
	});
	$('#go2').click(function(){
		$('input[name="testradio"]').each(function(){
			alert(this.value);
		});
	})
	$('#go3').click(function(){
		alert($('input[name="testradio"]:eq(1)').val());
	})
})
</script>

</head>

<body>
<input type="radio" name="testradio" value="jquery獲取radio的值" 
/>jquery獲取radio的值<br /> <input type="radio" name="testradio"
 value="jquery獲取checkbox的值" />jquery獲取checkbox的值<br /> 
<input type="radio" name="testradio" value="jquery獲取select的值" 
/>jquery獲取select的值<br />
<button id="go">選中的那個radio的值</button>
<button id="go2">遍曆所有radio的值</button>
<button id="go3">取第二個radio的值</button>
</body>
</html>