説明なし
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

script.js 242B

12345678910
  1. $(function () {
  2. $('select').each(function () {
  3. $(this).select2({
  4. theme: 'bootstrap4',
  5. width: 'style',
  6. placeholder: $(this).attr('placeholder'),
  7. allowClear: Boolean($(this).data('allow-clear')),
  8. });
  9. });
  10. });