おはようございます、私には重く見えるコードがあります。軽いコードで行きたいと思います。私の仕事は、2 つのドロップダウン ボックスを使用して州と都市を選択しようとしていることです。州のドロップダウン ボックスに合わせて都市のドロップダウン ボックスを変更する必要があります。
ここに私のコード:::
<fieldset>
<legend>Compare To</legend>
<span>state</span><select id="locationId" name="locationId">
<option value="0" <c:if test="${loc.location eq '0'}">selected="selected"</c:if>>All Locations</option>
<c:forEach items="${locationDetailsList}" var="locationDetails">
<option value="${locationDetails.locationId}" <c:if test="${loc.locationId2 eq locationDetails.locationId}">
selected="selected"</c:if>>${locationDetails.locationName}</option>
</c:forEach></select>
<span>area</span>
<select id="area" name="area">
<option value="0" <c:if test="${locationId eq '0'}">selected="selected"</c:if>>All Locations</option>
<option value="1" <c:if test="${locationId ge '1'}">selected="selected"</c:if>>Hyderabad</option>
<option value="1" <c:if test="${locationId ge '1'}">selected="selected"</c:if>>Vizag</option>
</select>
</fieldset>
thx 親愛なる友人たち...