使用 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
是一天的毫秒数。
你可以做得更容易。它将禁用所有以前的日期。
$('#test').pickadate({
min: true
});
我正在使用 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
是一天的毫秒数。
你可以做得更容易。它将禁用所有以前的日期。
$('#test').pickadate({
min: true
});