LoginSignup
3
1

More than 3 years have passed since last update.

Select2の日本語化 「No results found」

Last updated at Posted at 2020-03-29

スクリーンショット 2020-03-18 18.44.56.png

Select2の日本語化のCDNを読み込ませると良い。

<!doctype html>
<html lang="ja">
  <head>
    <!-- Select2本体 -->
    <script src="https://cdnjs.cloudflare.com/ajax/libs/select2/4.0.2/js/select2.min.js"></script>
    <!-- Select2日本語化 -->
    <script src="https://cdnjs.cloudflare.com/ajax/libs/select2/4.0.2/js/i18n/ja.js"></script>
  </head>
  <body>
  </body>
</html>

参考記事:select2 v4で日本語対応してtagsのバグを回避した方法(根治ではない

3
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
1