根据另一个下拉列表中的选择填充一个下拉列表,然后重定向

时间:2012-08-05 15:26:17

标签: javascript menu

我正在尝试构建一个双层下拉菜单,其中第二个下拉列表填充第二个下拉菜单。我在网站上发现了很多例子,但是我希望在选择第二个菜单之后我的菜单会重定向到一个页面,并且无法解决这个问题。

我对JS的速度不高,所以请耐心等待。

以下代码是另一篇文章中的示例:

<script type="text/javascript">
function configureDropDownLists(ddl1,ddl2) {
    var colours = new Array('Black', 'White', 'Blue');
    var shapes = new Array('Square', 'Circle', 'Triangle');
    var names = new Array('John', 'David', 'Sarah');

    switch (ddl1.value) {
        case 'Colours':
            document.getElementById(ddl2).options.length = 0;
            for (i = 0; i < colours.length; i++) {
                createOption(document.getElementById(ddl2), colours[i], colours[i]);
            }
            break;
        case 'Shapes':
            document.getElementById(ddl2).options.length = 0; 
        for (i = 0; i < colours.length; i++) {
            createOption(document.getElementById(ddl2), shapes[i], shapes[i]);
            }
            break;
        case 'Names':
            document.getElementById(ddl2).options.length = 0;
            for (i = 0; i < colours.length; i++) {
                createOption(document.getElementById(ddl2), names[i], names[i]);
            }
            break;
            default:
                document.getElementById(ddl2).options.length = 0;
            break;
    }

}

function createOption(ddl, text, value) {
    var opt = document.createElement('option');
    opt.value = value;
    opt.text = text;
    ddl.options.add(opt);
}

然后叫它

<select id="ddl" onchange="configureDropDownLists(this,'ddl2')">
<option value=""></option>
<option value="Colours">Colours</option>
<option value="Shapes">Shapes</option>
<option value="Names">Names</option>
</select>
<select id="ddl2">
</select>

这一切都运行正常,但我希望页面在第二个下拉列表中进行选择后重定向到网站上的某个位置。

任何人都可以帮助我们调整代码以实现这一目标吗?

谢谢

1 个答案:

答案 0 :(得分:0)

  

我希望在第二次下拉菜单中进行选择后,页面会重定向到网站上的某个位置。

挂钩第二个change元素的<select>事件,然后从那里提交表单:

<select id="ddl2" onChange="redirect(this)">
</select>

function redirect(select) {
    // The simplest way: call submit on the form element the select belongs to:
    select.form.submit();
}

但您也可以在提交之前动态更改表单的目标属性,或者只是navigate away

更新:要使提交工作,您当然需要为您的选择提供一些name属性,例如:

<form action="/router.php" method="GET">
    <select name="first" onchange="configureDropDownLists(this,'ddl2')">
        ...
    </select>
    <select name="second" id="ddl2" onChange="redirect(this)">
    </select>
</form>

虽然您的configureDropDownLists函数可能有效,但您可以通过不使用switch语句来改进它,而是使用对象文字,只需在执行相同的操作之前选择选项值数组(如果在对象中找到了一个) :

function configureDropDownLists(firstSelect, secondId) {
    var map = {
        "colours": ['Black', 'White', 'Blue'],
        "shapes": ['Square', 'Circle', 'Triangle'],
        "names": ['John', 'David', 'Sarah']
    };

    var value = firstSelect.value.toLowerCase();
    var optionsArr = map[value];

    var secondSelect = document.getElementById(secondId);
    secondSelect.options.length = 0; // remove all options
    if (optionsArr) {
         for (var i=0; i<optionsArr.length; i++) {
              createOption(secondSelect, optionsArr[i], optionsArr[i]);
         }
    }
}