jQuery validation plugin: accept only alphabetical characters?

前端 未结 6 2286
-上瘾入骨i
-上瘾入骨i 2020-11-29 02:37

I\'d like to use jQuery\'s validation plugin to validate a field that only accepts alphabetical characters, but there doesn\'t seem to be a defined rule for it. I\'ve search

6条回答
  •  北海茫月
    2020-11-29 03:12

    If you include the additional methods file, here's the current file for 1.7: http://ajax.microsoft.com/ajax/jquery.validate/1.7/additional-methods.js

    You can use the lettersonly rule :) The additional methods are part of the zip you download, you can always find the latest here.

    Here's an example:

    $("form").validate({
      rules: {
        myField: { lettersonly: true }
      }
    });
    

    It's worth noting, each additional method is independent, you can include that specific one, just place this before your .validate() call:

    jQuery.validator.addMethod("lettersonly", function(value, element) {
      return this.optional(element) || /^[a-z]+$/i.test(value);
    }, "Letters only please"); 
    

提交回复
热议问题