首頁 > web前端 > js教程 > 主體

jquery取得radio值(單選組radio)_javascript技巧

WBOY
發布: 2016-05-16 16:33:41
原創
1325 人瀏覽過

單選組radio: $("input[@type=radio][@checked]").val();

單選組radio: $("input[@type=radio]").attr("checked",'2');//設定value=2的項目為目前選取項

取得一組radio被選取項目的值

var item = $('input[@name=items][@checked]').val();

radio單選組的第二個元素為目前選取值

$('input[@name=items]').get(1).checked = true

單選組 radio: $("input[@type=radio]").attr("checked",'2');//設定value=2的項目為目前選取項

jquery老的版本

var_name = $("input[@name='radio_name']:checked").val();

jquery 1.3以後的版本

var_name = $("input[name='radio_name']:checked").val();

看一個取得radio值的jquery實例

function getra(){

var_name = $("input[name='isspecialcnt']:checked").val();
//alert(var_name);
if(var_name=='1'){
$("#isspecialcntyes").show();
$("#isspecialcntno").hide();
}
if(var_name=='0'){
$("#isspecialcntyes").hide();
(www.jb51.net) $("#isspecialcntno").show();
}
}

<form name="form1" method="post" action="">
<p>
<label>
<input type="radio" name="radiogroup1" value="单选" id="radiogroup1_0">
单选</label>
<br>
<label>
<input type="radio" name="radiogroup1" value="单选" id="radiogroup1_1">
单选</label>
<br>
<label>
<input type="radio" name="radiogroup1" value="单选" id="radiogroup1_2">
单选</label>
<br>
<label>
<input type="radio" name="radiogroup1" value="单选" id="radiogroup1_3">
单选</label>
<br>
<label>
<input type="radio" name="radiogroup1" value="单选" id="radiogroup1_4">
单选</label>
<br>
<label>
<input type="radio" name="radiogroup1" value="单选" id="radiogroup1_5">
单选</label>
<br>
</p>
</form>
登入後複製
相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
最新問題
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板