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

How can I set last month on datetimepicker bootstrap?

我这样试:

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

有效

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

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

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

moment(3, "MM");

还要确保您引用了 momentjs 库。