私はたくさんのチェックボックス、95を持っています。それらはすべて同じクラスを持ち、配列として名前が付けられています。クラスをbg-primaryからbg-successまたは他の色に変更する必要があります。私はまた、最後に「あなたはこのチェックボックスを逃しました」と言うことができる必要があります。これは私が今CheckBoxとチェックのToggleクラス
<h3 class = "col-lg-12 text-center bg-warning "><a href="#">STEP 5 - Under the hood</a></h3>
<div id= "acc4">
<form>
<fieldset class="form-horizontal form-group bg-primary">
<input type="checkbox" class="box " name="checkBox[]" id="78">Check oil condition and level
</fieldset>
<fieldset class="form-horizontal form-group bg-primary">
<input type="checkbox" class="box " name="checkBox[]" id="79">Check coolant condition and level
</fieldset>
<fieldset class="form-horizontal form-group bg-primary">
<input type="checkbox" class="box " name="checkBox[]" id="80">Check trans fluid condition and level
</fieldset>
<fieldset class="form-horizontal form-group bg-primary">
<input type="checkbox" class="box " name="checkBox[]" id="81">Check power steering fluid condition and level
</fieldset>
<fieldset class="form-horizontal form-group bg-primary">
<input type="checkbox" class="box " name="checkBox[]" id="82">Check brake fluid condition and level
</fieldset>
<fieldset class="form-horizontal form-group bg-primary">
<input type="checkbox" class="box " name="checkBox[]" id="83">Fill washer fluid resevoir
</fieldset>
<fieldset class="form-horizontal form-group bg-primary">
<input type="checkbox" class="box " name="checkBox[]" id="84">Battery hold down
</fieldset>
<fieldset class="form-horizontal form-group bg-primary">
<input type="checkbox" class="box " name="checkBox[]" id="85">Check battery & charging system
</fieldset>
<fieldset class="form-horizontal form-group bg-primary">
<input type="checkbox" class="box " name="checkBox[]" id="86">Inspeect belts
</fieldset>
とjQueryで午前どこが失敗し使用していますのは、親とtoggle
クラスbg-warning
を取得するために
$('input[type=checkbox]').on('change', function() {
$(this).toggleClass('form-horizontal form-group bg-warning', this.checked);
});
はい先生に未チェックのものを見つけます。その部分ではうまくいきました。今、逃した配列をどうやって作りますか? – Griehle