1
我有以下代碼。我如何將選定的值傳遞給另一個scriptlet? 我試着做「getAttribute」,但它沒有奏效。因此,下面的代碼列出了汽車類型 ,我選擇了一個值但不知道如何將選定值傳遞給第二個下拉列表 列表,該列表根據所選值進一步填充。將選定的下拉列表傳遞到第二個下拉列表中
第一個下拉列表:
<div class="cell">
Select Car_Type
<div class="input-control">
<select id="carid" name="carid">
<option selected disabled>--SELECT CAR TYPE--</option>
<%
ArrayList<Integer> carList = CarListDAO.getCar(id);
for (int c: carList){
out.println("<option value='" + c + "'>" + c + "</option>");
request.setAttribute("c", c);
}
%>
</select>
</div>
</div>
通選擇的值從上面到下面的功能:
<div class="cell">
Select Car_Engine
<div class="input-control">
<select id="carENGINE" name="carENGINE">
<option selected disabled>--SELECT CAR Engine--</option>
<%
ArrayList<String> carEngine = CarListDAO.getCarEngine(SELECTED_VALUE_FIRST_DROPDOWN); <----selected value from first dropdown passed to this method
for (String y: carEngine){
out.println("<option value='" + y + "'>" + y + "</option>");
request.setAttribute("y", y);
}
%>
</select>
</div>
</div>
你不能這樣。您的代碼正在服務器上運行,並打印出一列選項。當呈現HTML時,您不是從第一個選擇中選擇選項的事件 –