이것은 내가 필요한, 숫자, 최대 길이 및 MINLENGTH 규칙에 대한 한 메시지를 가지고 싶습니다 자바 스크립트 코드jQuery 유효성 검사 플러그인. 몇 가지 규칙에 대해 1 개의 메시지를 어떻게 가질 수 있습니까?
$("#myform").validate({
rules: {
"studentid": {
required: true
, digits: true
, maxlength: 7
, minlength: 7
}
의 조각입니다. "잘못된 형식"나는처럼 개별적으로 각 규칙에 대해 메시지를 지정할 수 있습니다 알고
:
messages: {
name: {
required: "We need your email address to contact you",
minlength: jQuery.validator.format("At least {0} characters required!")
}
}
그러나 바로 가기를 가질 수 있습니다 나는 화면이 텍스트를 원하는? 감사! :)
[도움이 될 수 있습니다.] (https://jqueryvalidation.org/reference/#link-refactoring-rules) – mmushtaq