欢迎光临
我们一直在努力

动态菜单的另一种实现(一) category.js

建站超值云服务器,限时71元/月

//这里定义的数组,用来储存菜单内容
c=new array;
n=new array;

n[1010]="设备障碍"
n[1020]="客户建议"
n[1030]="其他"
n[1010010]="市话"
n[1010020]="寻呼"
n[1010030]="移动"
n[1010040]="数据"
n[1030010]="通信质量"
n[1030020]="服务质量"
n[1030030]="话费纠纷"
n[1030040]="电信连销店"
n[1030050]="公话代办"

c[1]=new array(1010010,1010020,1010030,1010040)
c[3]=new array(1030010,1030020,1030030,1030040,1030050)
c[0]=new array(1010,1020,1030)

function initmenu()
{
    var i;
    form1.c_type.length=c[0].length;
    for(i=0;i<c[0].length;i++)
    {
        catid=c[0][i];
        catname=n[catid];
        form1.c_type.options[i]=new option(catname,catid);
        }
}

function c_type_onchange()
{
    var i;
    if(c[form1.c_type.selectedindex+1]==null)
    {
        form1.c_type_2.length=0
        form1.c_type_2.options[0]=new option("");
    }
    else
    {
        form1.c_type_2.length=c[form1.c_type.selectedindex+1].length;
        for(i=0;i<c[form1.c_type.selectedindex+1].length;i++)
        {
            catid=c[form1.c_type.selectedindex+1][i];
            catname=n[catid];
            form1.c_type_2.options[i]=new option(catname,catid);
        }
    }

return true;
}

赞(0)
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com 特别注意:本站所有转载文章言论不代表本站观点! 本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。未经允许不得转载:IDC资讯中心 » 动态菜单的另一种实现(一) category.js
分享到: 更多 (0)

相关推荐

  • 暂无文章