disable past dates on datepicker

前端 未结 22 1255
梦毁少年i
梦毁少年i 2020-11-29 06:03

How to disable past dates from the current date on a datetimepicker? I tried few posts for similar question but was unable to achieve it, Below is what I tried



        
22条回答
  •  粉色の甜心
    2020-11-29 06:26

    To disable past dates, Add this given js:

    var $input = $('.datepicker').pickadate();
    var picker = $input.pickadate('picker');
    picker.set('min',true);`][1]
    

提交回复
热议问题