ページに多数のチェックボックスがありますが、これらのチェックボックスの値がわからないため、 IDは:チェックボックスがチェックされているかどうかを確認します。
<input value="78" type="radio" name="radio_tax_input[unit-type][]" id="in-unit-type-78">
<input value="90" type="radio" name="radio_tax_input[unit-type][]" id="in-unit-type-90">
<input value="3" type="radio" name="radio_tax_input[unit-type][]" id="in-unit-type-3">
私はチェックボックスの名前を知っています。私は、これらのチェックボックスの任意の数はjQueryのを使用して、チェックされたかどうかを確認しようとしています:
var selected_type = $("[name='radio_tax_input[unit-type][]']:checked").length; // count the unit type selections
if(selected_type == 0){
alert('denied');
return false;
}
私の変数selected_type
は常に0に設定されているが、誰が、なぜ勧めてもらえますか?
それがラジオでbutton..maxつの無線が選択されるように... –
本当に、私はちょうど –
がうまく動作しますが、選択されているかどうかを確認する必要がありますhttps://jsfiddle.net/atg5m6ym/4440/ –