LoginSignup
0
0

More than 3 years have passed since last update.

Date Range Picker の月タイトルが月年になっているのを年月にしたい

Posted at

背景

javascript で日付の期間を選択できる良いライブラリが無いか探していたところ、Date Range Picker がとても優れていた。日本語化もできるが、一点だけできなかったのが月ヘッダーの年月が月年になっていたところ。そこで、無理やり年月に変更する。

変更後画像
スクリーンショット 2021-01-28 11.48.19.png

$('.daterange').on('showCalendar.daterangepicker', function(ev, picker) {
  $('.daterangepicker .month').each(function() {
    var month_year;
    month_year = $(this).text().split(' ');
    $(this).text(month_year[1] + '' + month_year[0]);
  });
});



0
0
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
0
0