lanjingling0510 / react-mobile-datepicker

🙊 👻 look a demo, Please imitate mobile environment.
https://codepen.io/lanjingling0510/pen/LRpOYp?editors=1010
MIT License
301 stars 145 forks source link

max选择选择日期大于10时,max日期的年无法选择 #18

Closed ygmpkk closed 6 years ago

ygmpkk commented 6 years ago

当设置max日期为现在,也就是2017年10月25日,然后选择日期为2016年11月时,2017年被disabled了。

image

image

lanjingling0510 commented 6 years ago

@ygmpkk max不能设置成当前日期,如果你设置成new Date(2017, 9, 25), 相当于2017-10-25 00:00:00, 这个值是小于现在的时间的。

ygmpkk commented 6 years ago

了解了,谢谢你!