Jquery Unobstrusive validation show errors manually for Valid

回眸只為那壹抹淺笑 提交于 2019-12-25 17:18:57

问题


I have added errors manually to my input using the link in here Here and the example in Here but when I try $("#myshowErrors").valid() after I added the errors it becomes true?

here is my code

var validator = $( "#myshowErrors" ).validate();
validator.showErrors({
  "firstname": "I know that your firstname is Pete, Pete!"
});

I am not able to make the client validation fail. How can I make form.valid() to return false?

I don't want to make form.valid()=false; manually I want that to be taken care of by just setting the errors.


回答1:


It's entirely unclear by the lack of code in your question, but I think you might misunderstand where to attach the .valid() method.

This method only gets attached to a selector representing a single <form> element...

$('#myform').valid();  // triggers validation on the entire form

Or to any selector that represents a single form input element...

$('#myform input[name="myinput"]').valid();  // triggers validation on one input element

When .valid() is called, validation is triggered on the selected element, error message(s) is/are displayed, and the method will return true or false.

The .valid() method can never be attached to a selector that represents more than one element, or a collection of elements without also using a jQuery .each().


EDITS:

showErrors is just for showing existing errors. You cannot "invalidate" a field by calling showErrors. Fields are either valid or invalid based solely on what is contained within that field.


You've tagged the question with Unobtrusive Validation. Since jQuery Validation is handled automatically via the Unobtrusive Validation plugin, you are not allowed to call your own instance of the .validate() method. That's because the Unobtrusive plugin automatically constructs and calls .validate(). Once it's called, the plugin is initialized, it cannot be called again, and all subsequent calls are always ignored.



来源:https://stackoverflow.com/questions/44764238/jquery-unobstrusive-validation-show-errors-manually-for-valid

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!