如何在同一个jsp页面中为另一个组合框的选定索引更改事件添加数据库值到我的combox() 请快速帮助..............
这是我的代码
<tr>
<td>Item</td>
<td>
<select name="cboItems" id="cboItems">
<option value="-1">--Select--</option>
<%
CommodityInfoActions comObj = new CommodityInfoActions(erpConn);
comObj.getAllRecords();
Iterator itr = comObj.ListOfObjects.iterator();
int i = 1;
while (itr.hasNext()) {
CommodityInfo newObj = (CommodityInfo) itr.next();
String item = newObj.getCommodityName();
long itemid = newObj.getId();
out.println("<option value='" + itemid + "' >" + item + "</option>");
i++;
}
%>
</select>
</td>
</tr>
<tr>
<td>Batch No. </td>
<td>
<select id="cboBatchNo">
<option>--select--</option>
<%
try {
if (Long.parseLong(request.getParameter("cboItems")) > -1) {
CommodityPriceActions comp = new CommodityPriceActions(erpConn);
comp.getBatchno(Long.parseLong(request.getParameter("cboItems")));
CommodityPrices comPrice = new CommodityPrices();
itr = comp.ListOfObjects.iterator();
i = 1;
while (itr.hasNext()) {
CommodityPrices newObj = (CommodityPrices) itr.next();
out.println("<option value='" + newObj.getId() + "'>" + newObj.getBatchNo() + "</option>");
}
}
} catch (Exception exc) {
}
%>
</select>
</td>
</tr>
我希望根据运行时在cboItems中选择的选项更改cboBatchno的内容...
答案 0 :(得分:0)
@ ddMyth2857356我真的不知道你试过什么?这是提示,
$('#combobox1').change(function(){
var id = $(this).val();
$.ajax({
url : "servlet_URL&id="+ id,
type : "POST",
success : function(data) {
$("#combobox2").html(data);
}
});
});
这是其中一个想法。您想出了您尝试过的内容以及您面临的问题?希望这会有所帮助。