ajax实现的级联菜单

什么是级联菜单不用解释了,下面实现异步请求的方式实现实现二级联动;
ajax实现的级联菜单        ajax实现的级联菜单
  页面显示代码
   <select name="chapter" id="curchapter" οnchange="getnodelist()">
        <option>新建</option>
        <c:forEach items="${chapterlist }" var="chapter">
<option value="${chapter.chapterid }">${chapter.chaptername}</option>
</c:forEach>
    </select>
    请选择市:<select name="node" id="node"></select>
js代码:得到XMLHttpRequest对象过程已经省略:请参考                       http://blog.sina.com.cn/s/blog_bfd7909001016w9x.html 
   xmlhttp.onreadystatechange = function() {
if (4 == xmlhttp.readyState) {
if (200 == xmlhttp.status) {
var temp = xmlhttp.responseText;
var arr = temp.split("|");
document.getElementByIdx_x_x_x_x_x_x_x("node").opti ons.length = 0;
//长度设置为0即可
for ( var i = 0; i < arr.length; i++) {
var arg = arr[i].split(",");
var opp = new Option(arg[1], arg[0]);

document.getElementByIdx_x_x_x("node").options.add(opp,null );
}
} else {
//alert("获取章节信息失败啦");
}
}
};
xmlhttp.open("post", "getnode", true);
xmlhttp.setRequestHeader('Content-type','application/x-www-form- urlencoded');
var paras = "chaptetid=" + document.getElementByIdx_x_x_x("curchapter").value;
xmlhttp.send(paras);//发送的是查询字符串
}
注:请求服务端发送的数据的格式为:
result=city.getId()+","+city.getName()+"|"+city2.getId()+","+city2.getName();


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值