jsp:选择区域负责人之后,根据其value中的userid去后台操作数据库查询其手下所有的促销主管,并回显在super3的<select>标签中可供继续选择,用js或jquery操作ajax,前端代码应该怎么写? <select name="super2" id="super2" > <option value="">区域负责人</option> <c:forEach var="item" items="${entity}"> <option value="${item.userId }">${item.realName }</option> </c:forEach> </select> <select name="super3" id="super3" > <option value="">促销主管</option> <c:forEach var="item" items="${entity}"> <option value="${item.userId }">${item.realName }</option> </c:forEach> </select>
添加回答
举报
0/150
提交
取消