datepicker icon indicating copy to clipboard operation
datepicker copied to clipboard

Support range selection, maximum and minimum settings, time format free conversion, UI good-looking, easy to use, refer to element-ui datePicker jQuery version

Results 14 datepicker issues
Sort by recently updated
recently updated
newest added

范围选择: 选择上一月变动 结束时间的月份也跟着变了 且间隔一个月 如何让结束时间不动,目前看了源码没有联动,想自己手动改下,但是选区那边和再次打开展示又有问题了。求大神早日实现

现在我用滚轮选择时分秒,每滚动一次就会滑动三个时间,应该怎么解决这个问题呢,急急急

存在的问题: endMoment.isAfter(API.newDateFixed(this.picker, endRangeDate)) 建议: isAfter最好添加限制类型参数,不然前后日期相同时,比较出来的结果存在问题 moment('2010-10-20').isAfter('2011-01-01', 'year')

初始化默认时间 似乎没有提供方法啊

bug of displaying February in a leap year https://github.com/qiuyaofan/datepicker/blob/af09df99da5fcc03adb2d55c99a1aa73e7145dec/js/datepicker.all.js#L1150 ` var day = parseInt(API.getMonthDay(month, year));` https://github.com/qiuyaofan/datepicker/blob/af09df99da5fcc03adb2d55c99a1aa73e7145dec/js/datepicker.all.js#L1219 `begin = (parseInt(weekday) + day) % 7;` https://github.com/qiuyaofan/datepicker/blob/af09df99da5fcc03adb2d55c99a1aa73e7145dec/js/datepicker.all.js#L1221 `var nextMax = ((6 - row...

能否通过input的click事件,来展示日期选择面板

Hello Is there any method to set a date in the calendar? Basically I need to change the date by code. Regards

看了所有的例子,没有看到能选择月份范围的,比如想选择2020-03至2020-06月应该怎么做呢?

比如用户选了第一个2020-04-20,那么只能选前后三十天的日期 目前插件有between这个配置,但是这个配置是用户可以选,只是点击确定值没有填入input, 如果做成前后三十天之外的日期是disable,直接不可点击,这样感觉更好一点