最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - How to restrict years range in date picker? - Stack Overflow

programmeradmin3浏览0评论

I am using following script for datepicker. Currently I am restricting the maximum year by mentioning 'YearRange:2014:2015'. This looks like a manual work. But I want a code which can automatically set 1 year from today.

$<script>
  $(function() {

    $( "#checkin" ).datepicker({
      defaultDate: "+2d",
      yearRange: '2014:2015',
      changeMonth: true,dateFormat: 'dd/mm/yy',
                minDate: 1,
      numberOfMonths: 1,
      onClose: function( selectedDate ) {
        $( "#checkout" ).datepicker( "option", "minDate", selectedDate );
      }
    });

    $( "#checkout" ).datepicker({
      defaultDate: "+3d",dateFormat: 'dd/mm/yy',
      yearRange: '2014:2015',
                minDate: 2,
      changeMonth: true,
      numberOfMonths: 1,
      onClose: function( selectedDate ) {
        $( "#checkin" ).datepicker( "option", "maxDate", selectedDate );
      }
    });

  }); 
  </script>

I am using following script for datepicker. Currently I am restricting the maximum year by mentioning 'YearRange:2014:2015'. This looks like a manual work. But I want a code which can automatically set 1 year from today.

$<script>
  $(function() {

    $( "#checkin" ).datepicker({
      defaultDate: "+2d",
      yearRange: '2014:2015',
      changeMonth: true,dateFormat: 'dd/mm/yy',
                minDate: 1,
      numberOfMonths: 1,
      onClose: function( selectedDate ) {
        $( "#checkout" ).datepicker( "option", "minDate", selectedDate );
      }
    });

    $( "#checkout" ).datepicker({
      defaultDate: "+3d",dateFormat: 'dd/mm/yy',
      yearRange: '2014:2015',
                minDate: 2,
      changeMonth: true,
      numberOfMonths: 1,
      onClose: function( selectedDate ) {
        $( "#checkin" ).datepicker( "option", "maxDate", selectedDate );
      }
    });

  }); 
  </script>
Share Improve this question edited May 6, 2014 at 19:22 j08691 208k32 gold badges269 silver badges280 bronze badges asked May 6, 2014 at 19:18 ShahShah 191 gold badge1 silver badge6 bronze badges 4
  • Try and be more specific, what exactly are you trying to do? The yearRange options only restricts the years shown in the dropdown that is visible when selecting years are enabled ? – adeneo Commented May 6, 2014 at 19:22
  • api.jqueryui./datepicker/#option-maxDate – j08691 Commented May 6, 2014 at 19:26
  • Dear Adeneo, Let me explain you with example. If a guest doing hotel reservation on today(06/05/2014) means, In check-in and Check-out date selection, the date picker should allow the guest to select the date between 06-05-2014 than 06-05-2015(1yr) only. Got my point? – Shah Commented May 6, 2014 at 19:32
  • @Shah - I think I do, you're trying to restrict the datepickers, like this -> stackoverflow./questions/21126837/… – adeneo Commented May 6, 2014 at 19:43
Add a ment  | 

3 Answers 3

Reset to default 4
var year = (new Date).getFullYear();
$( "#datepicker" ).datepicker({
    minDate: new Date(year, 0, 1),
    maxDate: new Date(year+1, 11, 31)
});

To set the max date that can be selected, you can use the maxDate option

maxDate: '+1y' // one year from today

FIDDLE

This would also limit the yearRange when showYear is set to true.

Check the documentation here http://api.jqueryui./datepicker/#option-yearRange

yearRange: '1950:2013', // specifying a hard coded year range

or this way

yearRange: "-100:+0", // last hundred years
发布评论

评论列表(0)

  1. 暂无评论