jQuery Show a Textbox When an Option is Selected

前端 未结 4 1788
暖寄归人
暖寄归人 2021-02-06 10:33

I have the following code:










$('#sel').change(function() {
    $('#other').css('display', ($(this).val() == 'Other') ? 'block' : 'none');
});

提交回复
热议问题