.net mvc不会使用iCheck.js和select2.js自动触发验证

时间:2022-11-27 18:40:50

in my mvc4 application,i user select2 and iCheck plugins to make form behaviours nicely, but some questions occured when validating models.

在我的mvc4应用程序中,我使用select2和iCheck插件来很好地制作表单行为,但在验证模型时会出现一些问题。

form ellments that using select2 and iCheck do not validate automatically when value changes.

使用select2和iCheck的表单元素在值更改时不会自动验证。

but when i submit the form, validation trggered.

但是当我提交表格时,验证会变得严重。

I want the form elements using select2 and iCheck validate automatically when value changes, just as the valdations behaviour on textbox.

我希望使用select2和iCheck的表单元素在值更改时自动验证,就像文本框上的valdations行为一样。

below image validation is trggered when submit the form,this is well

提交表格时,下面的图像验证是笨拙的,这很好

.net mvc不会使用iCheck.js和select2.js自动触发验证

when i select a not empty value, the error message still stay here, how to solve it? .net mvc不会使用iCheck.js和select2.js自动触发验证

当我选择一个非空值时,错误信息仍然留在这里,如何解决?

it will validate when i submit the form again.

它将在我再次提交表格时进行验证。

1 个解决方案

#1


0  

$("-select2 element-").on("change",function(){
    $(this).valid();
});

to validate each time the element changes.

每次元素更改时验证。

#1


0  

$("-select2 element-").on("change",function(){
    $(this).valid();
});

to validate each time the element changes.

每次元素更改时验证。