disable past dates on datepicker

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

    try this,

    $( "#datepicker" ).datepicker({ minDate: new Date()});
    

    Here, new Date() implies today's date....

提交回复
热议问题