-1

我正在使用 jQuery Validate 验证我的 from,并且我已经禁用了对 Kendo Date 的用户输入。但是当我申请disabled="disabled"Kendo 日期选择器时,日期选择器的验证不起作用。

4

1 回答 1

0

当我申请时,日期选择器的验证不起作用disabled="disabled"

默认情况下,jQuery Validate 插件将永远无法验证disabled字段等。

见第 553 行

.not( ":submit, :reset, :image, [disabled], [readonly]" )
.not( this.settings.ignore )

此行为被硬编码到插件中,并且没有禁用它的选项。

不能使用ignore选项禁用它。)

于 2015-04-29T14:30:39.580 回答