jQuery multiple select show/hide

前端 未结 5 1470
青春惊慌失措
青春惊慌失措 2021-01-20 05:39

I have a table with language translation. I\'m trying to create a script that will hide multiple language columns. The problem is that it only hide one field at a time. I ca

5条回答
  •  陌清茗
    陌清茗 (楼主)
    2021-01-20 06:23

    Replace your JS with this:

    $(document).ready(function () {
       $( ".hide" ).change(function() {
       var str = [];
       $('[class^=cell]').show();
       $( ".hide option:selected" ).each(function() {
          var vq = $( this ).val();
          $('.cell'+vq).hide();    
       });
    })
    .trigger( "change" );
    });
    

提交回复
热议问题