从选择表单中删除第一个选项

时间:2010-07-15 14:16:07

标签: javascript

有没有办法从此脚本中删除第一个选项:

http://javascript.internet.com/navigation/connected-comboxes.html

我想从列表中删除 [类型] [样式] 选项,仅显示其他选项...

有人可以帮忙吗?

2 个答案:

答案 0 :(得分:1)

删除以下行:

    document.product.id_type.options[0] = new Option("[ Type ]");

    document.product.id_style.options[0] = new Option("[ Style ]");

答案 1 :(得分:0)

除了已经建议的内容,在代码中进行一些调整,设置1 = 0,如果你还想从第二个组合中删除第一个空选项,请使用j = 0

================================

function init(sel_type, sel_style){
    for(i = 0; i <= TypeArray.length; i++){
        document.product.id_type.options[i] = new Option(TypeArray[i].type, TypeArray[i].id);

        if(TypeArray[i].id == sel_type)
            document.product.id_type.options[i].selected = true;
    }

    OnChange(sel_style);
}


function OnChange(sel_style){
    sel_type_index = document.product.id_type.selectedIndex;
    sel_type_value = parseInt(document.product.id_type[sel_type_index].value);
    for(i = document.product.id_style.length - 1; i > 0; i--)
        document.product.id_style.options[i]    = null;
    j=1;
    for(i = 0; i <= StyleArray.length; i++){
        if(StyleArray[i].id_type == sel_type_value){
            document.product.id_style.options[j]    = new Option(StyleArray[i].style, StyleArray[i].id);

            if(StyleArray[i].id == sel_style)   document.product.id_style.options[j].selected = true;

            j++;
        }

    }
}