Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用jsDatepick。我需要将最小日期设置为今天的日期。有什么选择吗?
快速更改 JsDatePick 的代码即可完成此操作。它在完整 js 文件的第 671 行附近
它说如果(!this.oConfiguration.limitToToday){
只需取出!
IE
如果(this.oConfiguration.limitToToday){
每当您选择任何日期时,您都会触发比较日期的功能。
不是吗?