javawscript 三级菜单的实现原理
更新时间:2009年07月01日 00:50:17 作者:
javawscript 三级菜单的实现代码。
省份: | |
城市: | |
区县: |
|
省份,城市,区县数据结构:【名称,父类ID,当前ID】
onChange="changelocation2(document.editForm.smalllocation.options[document.editForm.smalllocation.selectedIndex].value)"
根据selectedIndex取得下一级关联菜单的父类ID,
复制代码 代码如下:
function changelocation(locationid)
{
document.editForm.smalllocation.length = 0;
// document.editForm.dlmc0.length = 0;
document.getElementById("dlmc0").length=0;
//document.editForm.dlmc0.options[0] = new Option('==请选择==','');
document.getElementById("dlmc0").options[0] = new Option('==请选择==','');
//alert(locationid);
var locationid=locationid;
var i;
document.editForm.smalllocation.options[0] = new Option('==请选择==','');
for (i=0;i < onecount; i++)
{
if (subcat[i][1] == locationid)
{
document.editForm.smalllocation.options[document.editForm.smalllocation.length] = new Option(subcat[i][0], subcat[i][2]);
}
}
}
您可能感兴趣的文章:
相关文章
JavaScript Tips 使用DocumentFragment加快DOM渲染速度
大家在开发JavaScript应用的时候,如果遇到这种大量节点的情况,不妨将DocumentFragment作为一个备选的方案。2010-06-06关于javascript中限定时间内防止按钮重复点击的思路详解
下面小编就为大家带来一篇关于javascript中限定时间内防止按钮重复点击的思路详解。小编觉得挺不错的,现在就分享给大家,也给大家做个参考。一起跟随小编过来看看吧2016-08-08
最新评论