java 用 ajax读取数据库实现 两个下拉框,选择地市,后面的下拉框会显示该地市的营业厅,级联菜单?
functionreplyMessage(){varcityCode=$('#code').val();if(cityCode!=null&&cityCode!=""){...
function replyMessage() {
var cityCode = $('#code').val();
if (cityCode != null && cityCode != "") {
$.ajax({
url:'${appPath}/ht/hd!getBhnameByCityCode.action?cityCode='+cityCode,
type:'post',
date:{},
async:false,
success:function(data) {
$.each(data.getBhnameByCityCode, function(i, value) {
$("#hallname").append("<option value=" + value.bhseq + ">" + value.bhname + "</option>");
});
},
error:function(XMLHttpRequest, textStatus, errorThrown) {
alert("error");
}
});
}
}
我的ajax 不对,
后台代码:
后台代码 展开
var cityCode = $('#code').val();
if (cityCode != null && cityCode != "") {
$.ajax({
url:'${appPath}/ht/hd!getBhnameByCityCode.action?cityCode='+cityCode,
type:'post',
date:{},
async:false,
success:function(data) {
$.each(data.getBhnameByCityCode, function(i, value) {
$("#hallname").append("<option value=" + value.bhseq + ">" + value.bhname + "</option>");
});
},
error:function(XMLHttpRequest, textStatus, errorThrown) {
alert("error");
}
});
}
}
我的ajax 不对,
后台代码:
后台代码 展开
2个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询