본문 바로가기
javascript

[bootstrap] multiple selected 선택 n개 이상일 때, 전체일 때

by 바나냥 2020. 4. 8.
      // add ellipsis
      if (selectedItems.length > 2) title += '...';
        
      // if all options selected
      if (selectedItems.length == $selectOptions.length) title = '전체';

댓글