ajax+js+java實現頁面下拉框聯動
jsp程式碼:
<%-- 第一級下拉 --%>
<select id="channelId" onchange="getChlProduct()" name="channelId" style="width:100px" >
<option value="" selected>全部</option>
<c:forEach var="re" items="${adminCps}">
<c:choose>
<c:when test="${!empty channelId && re.id == channelId}">
<option value="${re.id}" selected>${re.channelName}</option>
</c:when>
<c:otherwise>
<option value="${re.id}">${re.channelName}</option>
</c:otherwise>
</c:choose>
</c:forEach>
</select>
<%-- 聯動下拉 --%>
<select id="combinedConditionValue_chlProductId" name="combinedConditionValue['chlProductId']" class="form-control input-sm" style="width:100px" >
</select>
<input type="hidden" value="${searchValue.combinedConditionValue['chlProductId'] }" id="chlProductValue">
<%-- 該隱藏域為了實現查詢回顯所用--%>
<%-- 聯動事件選擇改變事件 --%>
js程式碼:
function getChlProduct(){
var channelId = $("#combinedConditionValue_channelId").val();
var obj = document.getElementById("combinedConditionValue_chlProductId");//此處必須由getElementById獲取頁面物件,以防止瀏覽器不支援下面的option方法。
$.ajax({
type : 'GET',
contentType : 'application/json',
url : '${ctx}/lb/${libraryPath}/prodOrderRelation/getChlProduct?channelId='+channelId,
dataType : 'json',
success : function(data) {
obj.options.length=0;
obj.options.add(new Option("請選擇",""));
var chlProductValue = $("#chlProductValue").val();
$.each(data.chlProducts,function(i,item) {
obj.options.add(new Option(item.chlProdName,item.id));
if(chlProductValue == item.id){
obj.options[i+1].selected = 'selected';//此處i+1,是因為上面有obj.options.add(new Option("請選擇",""));所以i要比實際長度小,以免造成回顯錯誤。
}
});
}
});
}
java後臺程式碼:
@RequestMapping(value = "/lb/{libraryPath}/prodOrderRelation/getChlProduct")
@ResponseBody
public Map<String, Object> getChlProduct(String channelId){
List<ChlProduct> chlProducts = simpleDao.getChlProduct(channelId);
Map<String, Object> map = new HashMap<String, Object>();
map.put("chlProducts", chlProducts);
return map;
}