0
属性がchecked="checked"
に設定されているものだけを選択しますが、すべてを選択します。条件がすべてのチェックボックスを選択した場合
<input class="chxbx" type="checkbox" checked="checked">
<input class="chxbx" type="checkbox">
<input class="chxbx" type="checkbox">
のjQuery:
$(".chxbx").each(function(i, e){
if($(".chxbx").prop("checked", true)){
// this should select only the the input tag with
//checked="checked" but it selects all checkboxes
}
})
質問は何ですか? – Satpal
こんにちはSatpal、条件がすべてのチェックボックスを選択すると、SatPalが有効になります。 htmlでは最初の入力タグのみがチェックされ、条件が最初のタグだけがチェックされていることを示す必要がある場合はjquery – Deke