我试着这样:
var lastMonth = new Date();
lastMonth.setMonth(lastMonth.getMonth() - 1 );
$('#datetimepicker').datetimepicker({
defaultDate: lastMonth
});
它有效
但是在datetimepicker bootstrap插件中,是否有可以使用的方法?
答案 0 :(得分:1)
$('#datetimepicker').datetimepicker({
defaultDate: moment(12, "MM");
});
此行代码默认设置当前年份和上个月:
moment(3, "MM");
还要确保您引用了momentjs
库。