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' });
业精于勤,荒于嬉;行成于思,毁于随。