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

后端 未结 6 1772
广开言路
广开言路 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:28

    I've had to do this very thing. Here's the code I used:

    $(function() {
        var 
        jqDdl = $('#ddl'),
        onChange = function(event) {
            if ($(this).val() === 'Other') {
                $('#otherTxtbox').show();
                $('#otherTxtbox').focus().select();
            } else {
                $('#otherTxtbox').hide();
            }
        };
        onChange.apply(jqDdl.get(0)); // To show/hide the Other textbox initially
        jqDdl.change(onChange);
    });
    

提交回复
热议问题