-3

私はこのようなものを持っています:

<div class="controls">
<label class="checkbox inline">
<input type="checkbox" value="Boardroom" name="Form[257][]">&nbsp;Boardroom</label>
<label class="checkbox inline">
<input type="checkbox" value="Theatre" name="Form[257][]">&nbsp;Theatre</label>
<label class="checkbox inline">
<input type="checkbox" value="School" name="Form[257][]">&nbsp;School</label>
<label class="checkbox inline">
<input type="checkbox" value="U-shape" name="Form[257][]">&nbsp;U-shape</label>
<label class="checkbox inline">
<input type="checkbox" value="Coctail" name="Form[257][]">&nbsp;Coctail</label>
<label class="checkbox inline">
<input type="checkbox" value="Banquet" name="Form[257][]">&nbsp;Banquet</label>
</div>

そして、画像を追加したいので、次のようになります。

<div class="controls">
<label class="checkbox inline">   
<input type="checkbox" value="Boardroom" name="Form[257][]">
<img src='1.png'>&nbsp;Boardroom</label>
<label class="checkbox inline">
<input type="checkbox" value="Theatre" name="Form[257][]">
<img src='2.png'>&nbsp;Theatre</label>
<label class="checkbox inline">
<input type="checkbox" value="School" name="Form[257][]">
<img src='3.png'>&nbsp;School</label>
<label class="checkbox inline">
<input type="checkbox" value="U-shape" name="Form[257][]">
<img src='4.png'>&nbsp;U-shape</label>
<label class="checkbox inline">
<input type="checkbox" value="Coctail" name="Form[257][]">
<img src='5.png'>&nbsp;Coctail</label>
<label class="checkbox inline">
<input type="checkbox" value="Banquet" name="Form[257][]">
<img src='6.png'>&nbsp;Banquet</label>
</div>

基本的に、ラベルごとに異なる画像を追加する必要があります。これを行う方法を知っている人はいますか? 返信ありがとうございます。

4

4 に答える 4