disable past dates on datepicker

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

    var dateToday = new Date();
    
    $('#datepicker').datepicker({                                     
        'startDate': dateToday
    });
    

提交回复
热议问题