Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
以前は、リストを使用して選択ボックスとして表示していました。
<select name="chosenList"> <c:forEach> ... </c:forEach> </select>
次に、チェックボックスとデータを含むリストを表示します<input type="checkbox" /> This is checkbox <br />。チェックボックスを使用して各データをループして表示するにはどうすればよいですか?
<input type="checkbox" /> This is checkbox <br />
動作しません。チェックボックスを削除して使用することができます
<select multiple> <c:forEach> <option>press ctrl+lmb</option> </c:forEach> </select>
選択せずにチェックボックスをループする
<c:forEach><label><checkbox />clickme</label></c:forEach>
よろしく