84669인 학습
152542인 학습
20005인 학습
5487인 학습
7821인 학습
359900인 학습
3350인 학습
180660인 학습
48569인 학습
18603인 학습
40936인 학습
1549인 학습
1183인 학습
32909인 학습
我用了这个mobiscrol 插件,但是我想限制一下日期,比如我只让他可以选择5天以内的时间。其他的不能选择、我看了源码,看的不是很明白,想找一个大佬一起探索下,谢谢了
业精于勤,荒于嬉;行成于思,毁于随。
var now = new Date(), max = new Date(now.getFullYear(), now.getMonth(), now.getDate()+5), min=new Date(now.getFullYear(), now.getMonth(), now.getDate()); $('#demo').mobiscroll().datetime({ theme: 'mobiscroll', display: 'bottom', lang: 'zh', min:min , max: max, headerText:'出发时间', dateWheels: '|d|', timeWheels: 'HHii' , dateFormat: 'yyyy-mm-dd' });
业精于勤,荒于嬉;行成于思,毁于随。