欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

JQuery判斷radio單選框是否選中并獲取值的方法

 更新時(shí)間:2019年01月17日 15:25:40   投稿:laozhang  
在本篇文章里小編給大家分享了關(guān)于JQuery判斷radio單選框是否選中并獲取值的方法,需要的朋友們可以學(xué)習(xí)下。

一、設(shè)置選中方法

代碼如下:

$("input[name='名字']").get(0).checked=true; 
$("input[name='名字']").attr('checked','true');
$("input[name='名字']:eq(0)").attr("checked",'checked'); 
$("input[name='radio_name'][checked]").val(); //獲取被選中Radio的Value值


二、設(shè)置選中和不選中示例

代碼如下:

<input type="radio" value="0" name="jizai" id="0"/>否
<input type="radio" value="1" name="jizai" id="1"/>是
#jquery中,radio的選中與否是這么設(shè)置的。
$("#rdo1").attr("checked","checked");
$("#rdo1").removeAttr("checked");
通過name

代碼如下:

$("input:radio[name="analyfsftype"]").eq(0).attr("checked",'checked');
$("input:radio[name="analyshowtype"]").attr("checked",false);

通過id

代碼如下:

$("#tradeType0").attr("checked","checked");
$("#tradeType1").attr("checked",false);

三、另一種設(shè)置選中方法

代碼如下:

<script type="text/javascript"> 
$(document).ready(function(){ 
$("input[@type=radio][name=sex][@value=1]").attr("checked",true); 
}); 
</script> 

您的性別:

代碼如下:

<input type="radio" name="sex" value="1" <s:if test="user.sex==1">checked</s:if>/>男 
<input type="radio" name="sex" value="0" <s:if test="user.sex==0">checked</s:if>/>女

四、根據(jù)值設(shè)置radio選中

代碼如下:

$("input[name='radio_name'][value='要選中Radio的Value值']").attr("checked",true); //根據(jù)Value值設(shè)置Radio為選中狀態(tài)

五、使用prop方法操作示例

代碼如下:

$('input').removeAttr('checked'); 
$($('#'+id+'input').eq(0)).prop('checked',false);
$($('#'+id+' input').eq(0)).prop('checked',true);

radio不能用“checked”相等來判斷,只用用true來判斷

代碼如下:

<script type="text/javascript">
$(function () {
$("input").click(function () {
if ($(this).attr("checked")) {
alert("選中了");
}
});
});
</script>

六、jQuery獲取循環(huán)中的選中單選按鈕radio的值

$('input:radio:checked').each(function(){
//var checkValue = $(this).val();
console.log($(this).val());  // 選中框中的值
});

相關(guān)文章

最新評論