第一次使用etrnicode bootstrap datepicker,我无法将开始日期设置为今天并禁用以前日期的选择。
我的代码是:
$('#issue_date').datepicker({
startDate: '+0d'
}).on('changeDate', function(){
... stuff happens here
});
我也尝试过:
$('#issue_date').datepicker({
startDate: new date()
}).on('changeDate', function(){
... stuff happens here
});
但我仍然可以选择昨天。我错过了什么?感谢
答案 0 :(得分:1)
我在第二次尝试中看到的唯一问题是date()
必须大写。 Fiddle
$('.datepicker').datepicker({
autoclose: true,
startDate: new Date()
}).on('changeDate', function(){
console.log("Hello");
});