標籤:http method java nbsp 16px 參考 執行個體 head 重要
使用jquery擷取radio的值,最重要的是掌握jquery選取器的使用,在一個表單中我們通常是要擷取被選中的那個radio項的值,所以要加checked來篩選,比如有以下的一些radio項:
1.<input type="radio" name="testradio" value="jquery擷取radio的值" />jquery擷取radio的值
2.<input type="radio" name="testradio" value="jquery擷取checkbox的值" />jquery擷取checkbox的值
3.<input type="radio" name="testradio" value="jquery擷取select的值" />jquery擷取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()
下面執行個體講述了jquery單選框radio綁定click事件實現方法。分享給大家供大家參考。
具體實現方法如下:
<html><head><title>單選框radio綁定click事件</title><meta http-equiv="content-type" content="text/html;charset=utf-8" /><script type="text/javascript" src="jquery-1.8.2.min.js"></script><script type="text/javascript"> $(function(){ $(":radio").click(function(){ alert("您是..." + $(this).val()); }); });</script><style type="text/css">h5{color:blue;}textarea{resize:none;}#word{color:red;}</style></head><body><h5>單選框 radio 綁定 click 事件</h5><form action="" method=""> <input type="radio" name="gender" value="男性">男性 <input type="radio" name="gender" value="女性">女性 <input type="radio" name="gender" value="春哥">春哥</form></body></html>
jquery單選框radio綁定click事件實現和是否選中的方法