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.
我正在使用剑道日期选择器。我正在尝试禁用 2000 年 1 月 1 日之前的日期。剑道日期选择器可以吗?
您可以简单地设置min日期选择器的值:
min
// set the min date to Jan 1st, 2011 $("#datePicker").kendoDatePicker({ min: new Date(2000, 0, 1), // other config options });