jQuery Show a Textbox When an Option is Selected

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

I have the following code:









JQuery:

$(function(){
  // hide by default
  $('other').css('display', 'none');

  $('selectbox_id').change(function(){
   if ($(this).val() === 'Other') {
     $('other').css('display', 'block');
   }
 });
});

提交回复
热议问题