2

我有一个应该更改我页面上的功能但显然不起作用的下拉菜单。一旦用户选择并且行业它更新地图并且应该更新下面的图例,我在下拉选择中就有一个地图。传说没有更新

请指出我做错了什么。

谢谢

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>

4

1 回答 1

1

.legend 不是 #legend http://jsfiddle.net/fy6hf/1/

$("#lstMap1Occ").change(function () {
        var index = $(this).children(":selected").index();
        $(".legend").children().hide().eq(index).show();
    });
于 2013-07-11T18:26:24.193 回答