如何设置明天的startDate?我在Date.today的文档中看不到一个选项,所以我可以再添加一天。
有办法完成这个吗?
@H_403_4@$(function() { $("#appointment_adate").datepicker({ format: 'yyyy-mm-d',autoclose: true,startDate: '+1d' }); });解决方法
引导没有官方的日期检测器因此,您应该明确说明您正在使用哪一个。
如果您使用eternicode/bootstrap-datepicker,则有一个startDate选项。如在README中直接在Options section下所述:
All options that take a “Date” can handle a Date object; a String formatted according to the given format; or a timedelta relative to today,eg ‘-1d’,‘+6m +1y’,etc,where valid units are ‘d’ (day),‘w’ (week),‘m’ (month),and ‘y’ (year).
所以你会做:
@H_403_4@$('#datepicker').datepicker({ startDate: '+1d' })