小编jin*_*wei的帖子

Bootstrap datetimepicker startDate不会禁用过去的日期

我使用bootstrap datetimepicker,我想禁用过去几天,但startDate选项不起作用:

var now = new Date();
var tomorrow = now.getFullYear() + "-" + (now.getMonth() + 1) + "-" + (now.getDate() + 1) + " " + now.getHours() + ":" + now.getMinutes() + ":" + now.getSeconds();
$('#end_at').datetimepicker({
    format: 'YYYY-MM-DD hh:mm:ss',
    startDate: tomorrow
});
Run Code Online (Sandbox Code Playgroud)

javascript date datetimepicker twitter-bootstrap

1
推荐指数
1
解决办法
1690
查看次数