使用 Pickadate.js 时禁用以前的日期

Disable Previous Dates When Using Pickadate.js

我正在使用 piackadate.js as a date picker for my site. I would like to implement the functionality that would disable any previous date. I read the docs on disabling dates,但我没有找到禁用所有以前日期的方法。

如何做到这一点?

试试这个:

var yesterday = new Date((new Date()).valueOf()-1000*60*60*24);

$('#test').pickadate({
  disable: [
    { from: [0,0,0], to: yesterday }
  ]
});

1000*60*60*24是一天的毫秒数。

演示:http://jsfiddle.net/alan0xd7/kdoo53vg/

你可以做得更容易。它将禁用所有以前的日期。

$('#test').pickadate({
    min: true
});