テキストエリア、テキスト、チェックボックス、ボタンを含むフォームがあります。以下のように要素を選択します。
$("#frmPersonalInfo :input:not(input[type=radio]):not(input[type=button])").each(function(){
//code here
});
を省略するとnot(input[type=radio])
、ラジオ要素が選択されます。すべての無線入力ではなく、チェック済みの無線 (アクティブな無線) を選択したい。これを行う方法はありますか?
ラジオの HTML コードは次のとおりです。
<input type="radio" checked="checked" id="txtPersonalInfoMale" name="gender" value="1" />
<input type="radio" id="txtPersonalInfoFemale" name="gender" value="2" />