## 一、設置選中方法
```
$("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值
```
## 二、設置選中和不選中示例
```
<input type="radio" value="0" name="jizai" id="0"/>否
<input type="radio" value="1" name="jizai" id="1"/>是
#jquery中,radio的選中與否是這么設置的。
$("#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);
```
## 三、另一種設置選中方法
```
<script type="text/javascript">
$(document).ready(function(){
$("input[@type=radio][name=sex][@value=1]").attr("checked",true);
});
</script>
```
## 四、根據值設置radio選中
```
$("input[name='radio_name'][value='要選中Radio的Value值']").attr("checked",true); //根據Value值設置Radio為選中狀態
```
## 五、使用prop方法操作示例
```
$('input').removeAttr('checked');
$($('#'+id+'input').eq(0)).prop('checked',false);
$($('#'+id+' input').eq(0)).prop('checked',true);
```