<TABLE class="table-frame" id=p1 cellSpacing=0 cellPadding=0 width="99%" align=center border=0> <TBODY> <TR> <TD class="table-frame-input-title" width="18%" height=22> 选择房间类别 </TD> <TD class="table-cell-input" height=22> <select name="vo.HOUSETYPE_ID" id="HOUSETYPE_ID" style="width:18%"> <option value="">--请选择--</option> <c:forEach var="t" items="${vo.houseTypeList }" varStatus="s"> <option value="${t.HOUSETYPE_ID }">${t.HOUSETYPE_NAME}</option> </c:forEach> </select> </TD> </TR> <TR> <TD class="table-frame-input-title" width="18%" height=22> 选择楼栋 </TD> <TD class="table-cell-input" height=22> <select name="vo.RIDGEPOLE_ID" id="RIDGEPOLE_ID" style="width:18%"> <option value="">--请选择--</option> <c:forEach var="t" items="${vo.ridegpoleList }" varStatus="s"> <option value="${t.RIDGEPOLE_ID }">${t.RIDGEPOLE_NAME }</option> </c:forEach> </select> </TD> </TR> <TR> <TD class="table-frame-input-title" width="18%" height=22> 上架房间号 </TD> <TD class="table-cell-input" height=22> </TD> </TR> </TBODY>
就这个表格,怎么根据房间类别和楼栋的不同显示不同的房间号?谢谢各位大大了
添加回答
举报
0/150
提交
取消