下拉选择更改

时间:2013-07-11 18:04:30

标签: javascript jquery html

我有一个下拉菜单应该更改我页面上的功能,但显然无法正常工作。一旦用户选择并行业更新地图,我就会在下拉选项上显示地图,并且应该更新下面的图例。图例未更新

请指出我做错了什么。

谢谢

JS

    $("#lstMap1Occ").change(function () {
        var index = $(this).children(":selected").index();
        $("#legend").children().hide().eq(index).show();
    });

这里是下拉(是的,有一个结束选择标记是因为某些奇怪的原因而不是粘贴)

<select id="lstMap1Occ">
    <option value="1">Engineers </option>
    <option value="2">Chemical Engineers</option>
</select>

HTML

<div class="legend">
<div class="engineers">
    <ul>
        <li style="background-color:rgb(254,240,217);">0-345</li>
        <li style="background-color:rgb(253,212,158);">346-503</li>
        <li style="background-color:rgb(253,187,132);">504-1240</li>
        <li style="background-color:rgb(252,141,89);">1241-1679</li>
        <li style="background-color:rgb(239,101,72);">1680-2625</li>
        <li style="background-color:rgb(215,48,31);">2627-4789</li>
    </ul>
</div>
<div class="chemical"> 
    <ul>
        <li style="background-color:rgb(254,240,217);">0-13</li>
        <li style="background-color:rgb(253,212,158);">14-24</li>
        <li style="background-color:rgb(253,187,132);">25-37</li>
        <li style="background-color:rgb(252,141,89);">38-56</li>
        <li style="background-color:rgb(239,101,72);">57-112</li>
        <li style="background-color:rgb(215,48,31);">113-168</li>
    </ul>
</div>

1 个答案:

答案 0 :(得分:1)

.legend not #legend http://jsfiddle.net/fy6hf/1/

$("#lstMap1Occ").change(function () {
        var index = $(this).children(":selected").index();
        $(".legend").children().hide().eq(index).show();
    });