jQuery - How to show/hide text box based on selected drop down

后端 未结 6 1774
广开言路
广开言路 2021-01-01 01:53

Sorry if this is extremely obvious, but I have looked and looked for a solution but haven\'t found anything. I\'m very new to jQuery, so even looking for what I want to do h

6条回答
  •  执念已碎
    2021-01-01 02:40

    Assuming by default your html has both boxes and the "Other" box is hidden.

    val = $('#myselect').val();
    
    switch( val ) {
    
      case "Other":
    
        $('#mybox').hide();
    
        $('#myotherbox').show();
    
        break;
    
    }
    

提交回复
热议问题