我有一个带有文本区域、文本、复选框和按钮的表单。我选择的元素如下:
$("#frmPersonalInfo :input:not(input[type=radio]):not(input[type=button])").each(function(){
//code here
});
当我省略not(input[type=radio])
then 无线电元素时,将被选中。我想选择已检查的无线电(活动的)而不是所有无线电输入。有没有办法做到这一点?
Radio HTML 代码如下:
<input type="radio" checked="checked" id="txtPersonalInfoMale" name="gender" value="1" />
<input type="radio" id="txtPersonalInfoFemale" name="gender" value="2" />