我正在使用 jQuery Validate 验证我的 from,并且我已经禁用了对 Kendo Date 的用户输入。但是当我申请disabled="disabled"
Kendo 日期选择器时,日期选择器的验证不起作用。
问问题
916 次
1 回答
0
当我申请时,日期选择器的验证不起作用
disabled="disabled"
默认情况下,jQuery Validate 插件将永远无法验证disabled
字段等。
.not( ":submit, :reset, :image, [disabled], [readonly]" )
.not( this.settings.ignore )
此行为被硬编码到插件中,并且没有禁用它的选项。
(不能使用ignore
选项禁用它。)
于 2015-04-29T14:30:39.580 回答