如何在datetimepicker bootstrap上设置上个月?

时间:2017-04-06 03:33:54

标签: jquery datetimepicker bootstrap-datetimepicker

我试着这样:

var lastMonth = new Date();
lastMonth.setMonth(lastMonth.getMonth() - 1 );
$('#datetimepicker').datetimepicker({
    defaultDate: lastMonth
});

它有效

但是在datetimepicker bootstrap插件中,是否有可以使用的方法?

1 个答案:

答案 0 :(得分:1)

$('#datetimepicker').datetimepicker({
    defaultDate: moment(12, "MM");
});

此行代码默认设置当前年份和上个月:

moment(3, "MM");

还要确保您引用了momentjs库。