在下拉列表中显示多个DIVS选择更改

时间:2013-06-23 16:20:58

标签: jquery

朋友

我有一个下拉选择值 即

<div class="controls left-padded-controls">
<form:select id="selectField" class="input-medium" path="">
<option value="option1">Test flow1</option>
<option value="option2">Test flow2</option>
</form:select>    
</div>

现在根据上面选择的下拉选项,我有

<label class="control-label left-padded-control-label"><spring:message code="message.description"></spring:message>:&nbsp; 
</label>
<div id="option1" class="box">Content 1</div>
<div id="option2" class="box">Content 2</div>
<br/>   

并且

<label class="control-label left-padded-control-label"><spring:message code="message.dynamic.audio.files"></spring:message>:&nbsp;              </label>
<div id="option3" class="box">Content 3</div>
<div id="option4" class="box">Content 4</div>

现在基于下拉选项,即测试流程1 我想显示div id“option1”和“option3” 并且在选择testflow2时,我想显示div id =“option2”和“option4”

要实现上述我的JQuery代码是

$(document).ready(function () {
    $('.box').hide();
    $('#option1').show();
     $('#option2').show();
    $('#selectField').change(function () {
        $('.box').hide();
        $('#'+$(this).val()).show();
    });
});

但它没有按预期工作,请建议适当的更改,

非常感谢

1 个答案:

答案 0 :(得分:2)

$(document).ready(function () {
    $('.box').hide();
    $('#option1').show();
    $('#option2').show();
    $('#selectField').change(function () {
        $('.box').hide();
        var option = $(this).val();
        $('#'+option).show();
        $('#'+(option=="option1" ? "option3" : "option4")).show();
    });
});

jsFiddle example