disable past dates on datepicker

前端 未结 22 1265
梦毁少年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:25

    This will work:

     var dateToday = new Date();    
     $(function () {
         $("#date").datepicker({ 
             minDate: dateToday 
         });
     });
    

提交回复
热议问题