jQuery 操作radiobutton

SieSteven發表於2015-11-20
<input id="sc" type="radio" name="Type" value="Service Component" onclick="typeChange()">Service Component  

<input id="tenant" type="radio" name="Type"  value="Tenant" onclick="typeChange()">Tenant


1、獲取某個radio選中的值,有三種方法

$("input:radio:checked").val();

 $("input[type='radio']:cheked").val()   ; 

 $("input[name='Type']:checked").val().

2、後臺會根據名字獲取相應的選中radio的值,用request.getParameter("Type")

3、設定第一個radio為選中$("input:radio:first").attr("checked","true")

4、設定最後一個radio為選中$("input:radio:last").attr("checked","true")

5、根據索引值設定任意一個radio為選中值$("input:radio").eq(索引值).attr("checked",true)或者           $("input:radio").slice(1,2).attr("checked","true")

6、根據value的值設定選中的radio:$("input[value=Tenant]").attr("checked",true)

7、刪除第幾個radio:$("input:radio").eq(索引值).remove()   (索引值0,1,2...)

8、遍歷$("input:radio").each(index,domEle){}


相關文章