jquery-ui 年月選択

サイト

www.npmjs.com

npm-install

> npm install jquery-ui-monthpicker --save

設定

$(function () {
    $('input.monthpicker').monthpicker({
      changeYear:true, 
      yearRange: '-2:+5',
      dateFormat: 'yy/mm',
      monthNamesShort: ['1月', '2月', '3月', '4月', '5月', '6月', '7月', '8月', '9月', '10月', '11月', '12月'], 
    });
});