jQuery show/hide drop-down options based on another drop-down option

前端 未结 7 728
离开以前
离开以前 2020-12-20 07:45

I am trying to create a drop-down select menu that will consist of three select boxes, where the 3rd box will show/hide specific option based on an option selected in the 1s

7条回答
  •  Happy的楠姐
    2020-12-20 08:16

    Try this:

    Html:

    
    
    
    
    
    

    JQuery:

     $(document).ready(function() {
        $("#select_3").children('option:gt(0)').hide();
        $("#select_1").change(function() {
            $("#select_3").children('option').hide();
            $("#select_3").children("option[value^=" + $(this).val().split(" ")[0] + "]").show()
        })
    })
    

    Working Fiddle

提交回复
热议问题