在我的控制器中我已經寫了如下填充國家列表和狀態列表填充狀態下拉(){基於國家下拉的在Java春天選擇
List <State> states = stateService.findAllStates();
return states;
}
而在我的JSP中,我已填充在國家和地區成功狀態:
<form:select path="country" id="country">
<form:option value="">Select Country</form:option>
<form:options items="${countries}" itemValue="countryCode" itemLabel
= "countryName" />
</form:select>
<form:errors path="country" cssClass="error"/>
<form:select path="state" id="state">
<form:option value="">Select Country</form:option>
<form:options items="${states}" itemValue="stateCode"
itemLabel="stateName" />
</form:select>
<form:errors path="state" cssClass="error"/>
但我需要根據國家的選擇填充狀態。
你必須使用JavaScript來實現這一點。 –