Makes the element require a given step.

 

normalizer

Prepares/transforms the elements value for validation.

Transform the value of an element and the result for validation instead of the initial value.

The normalizer can be defined global to all elements or local to only one element.

  • With that said, the local normalizer will only run for the element for which it was defined.
  • The global normalizer will run for all validated elements.

This normalizer can be then overrided for each element, as needed, by attaching one to it.

This way only the local one will run for that element, and the global one will run for others.

Note that this method:

  • Doesn't change the elements' value, it only changes the value used for validation.
  • Gets the value passed as argument, and "this" within it references the corresponding DOMElement.
  • Needs to return a String value, otherwise it will throw a TypeError exception.

require_from_group method

Ensures a given number of fields in a group are complete.

In the options passed to the rule, supply the minimum number of fields
within the group that must be complete and a selector to define the
group.

Then apply this rule to all the fields within the group.
The form then cannot be submitted until at least the minimum number have
been completed.

Part of the additional-methods.js file

url method

Makes the element require a valid url

Return true, if the value is a valid url.

Works with text inputs.

required method

Makes the element required.

  • required()

  • required( dependency-expression )

    • dependency-expression
      Type: String
      An expression (String) that is evaluated in the context of the element's
      form, making the field required only if the expression returns more
      than one element.
  • required( dependency-callback )

    • dependency-callback
      Type: Function()
      The function is executed with the element as it's only argument: If it returns true, the element is required. 
      • Return false, if the element is empty (text input) or unchecked (radio/checkbox) or if nothing is selected (select).
      • Works with text inputs, selects, checkboxes and radio buttons.
      • To force a user to select an option from a select box, provide an empty
        option element like <option value="">Choose…</option>
      • Note that white spaces are considered valid.

remote method

  • remote( options )

    • Requests a resource to check the element for validity.
    • options
      Type: Object
      For the URL of the resource to request for serverside validation (String) or options to fully customize the request, see jQuery.ajax for details.
      • These options deep-extend the defaults (dataType:"json", data:{nameOfTheElement:valueOfTheElement}). Any options you provide will override the defaults.
    • The serverside resource is called via jQuery.ajax (XMLHttpRequest) and
      gets a key/value pair corresponding to the name of the validated element
      and its value as a GET parameter.

      • The serverside response must be a
        JSON string that must be "true" for valid elements, and can be "false", undefined, or null for invalid elements, using the default error message.
      • If the serverside response is a string, eg. "That name is already taken, try peter123 instead", this string will be displayed as a custom error message in place of the default.
      • For more examples, take a look the marketo demo and the milk demo.

rangelength method

Return false if the element is:

  • some kind of text input and its length is too short or too long
  • a set of checkboxes that doesn't have enough, or has too many boxes checked
  • a select that doesn't have enough, or has too many options selected

Works with text inputs, selects and checkboxes.

range method

phoneUS method

Validate for valid US phone number.

Works with text inputs.

Part of the additional-methods.js file

number method

Makes the element require a decimal number.

Returns true if the value contains a valid decimal number.

Works with text inputs.

  • value
    Type: Number
    Step value required 

jQuery validator plugin之Methods的更多相关文章

  1. jQuery validator plugin 之 custom methods 案例1:multi email

    1.add method jQuery.validator.addMethod( "multiemail", function (value, element) { var ema ...

  2. jQuery validator plugin之概要

    jQuery validator 主页 github地址 demo学习 效果: Validate forms like you've never validated before! 自定义Valida ...

  3. jQuery validator plugin之Validator

    Validator.destroy() Destroys this instance of validator freeing up resources and unregistering event ...

  4. jQuery validator plugin之Plugin Method

    原文 .validate() validate( [options ] ) options Type: Object debug (default: false) Type: Boolean Enab ...

  5. jQuery validator plugin之Selector

    原文 :unchecked Selector Selects all elements that are unchecked. jQuery( ":unchecked" ) Inv ...

  6. jQuery.validator 详解二

    前言:上一篇详细的介绍了jQuery.validator( 版本v1.13.0 )的验证规则,这一篇重点讲述它的源码结构,及如何来对元素进行验证,错误消息提示的内部实现 一.插件结构(组织方式) 在讲 ...

  7. jQuery.validator 详解

    jQuery.validator 详解二 前言:上一篇详细的介绍了jQuery.validator( 版本v1.13.0 )的验证规则,这一篇重点讲述它的源码结构,及如何来对元素进行验证,错误消息提示 ...

  8. jQuery Validation Plugin学习

    http://blog.csdn.net/violet_day/article/details/14109261 jQuery Validation Plugin Demo 一.默认校验规则 (1)r ...

  9. (转)jquery.validator规则

      登录|注册     收藏成功 确定 收藏失败,请重新收藏 确定 标题 标题不能为空 网址 标签 摘要   公开 取消收藏             分享资讯 传PPT/文档 提问题 写博客 传资源 ...

随机推荐

  1. 为 git设置代理

    普通设置 git config --global http.proxy 'socks5://127.0.0.1:1080'git config --global https.proxy 'socks5 ...

  2. 教你如何用笔记本设置超快WIFI

    以win7为例 1.在主菜单运行框输入  cmd------->以管理员的身份运行 2.命令提示符中输入:netsh wlan set hostednetwork mode=allow ssid ...

  3. Oracle课程档案,第九天

    lsnrctl status:查看监听状态 Oracle网络配置三部分组成:客户端,监听,数据库 配置文件:$ vi $ORACLE_HOME/network/admin/listener.ora v ...

  4. Delphi 中的 XMLDocument 类详解(9) - 关于 HasChildNodes 与 IsTextElement

    unit Unit1; interface uses   Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, For ...

  5. IntelliJ IDEA 下的svn配置及使用

    首先,使用的时候,自己得先在电脑上安装个小乌龟.也就是svn啦. 第一步安装小乌龟. 如下: 具体安装好像没什么具体要求,一路next,就好. 如上图箭头所示,在安装 TortoiseSVN 的时候, ...

  6. zabbix报错排错大全

    zabbix报错 https://www.cnblogs.com/losbyday/category/876878.html作者总结的很全棒 1.在启动zabbix-agent 时系统日志输出 PID ...

  7. Spring中的事务操作

    事务的特性 原子性:强调事务的不可分割. 一致性:事务的执行的前后数据的完整性保持一致. 隔离性:一个事务执行的过程中,不应该受到其他事务的干扰. 持久性:事务一旦结束,数据就持久化到数据库. 如果不 ...

  8. java中加与不加public

    加public表示全局类,该类可以import到任何类内.不加public默认为保留类,只能被同一个包内的其他类引用来源:https://blog.csdn.net/qq_15037231/artic ...

  9. 把ArrayList集合中的字符串内容写到文本文件中

    list列表数据导出到指定路径文本文档中 public  String getSDCardPath() { String sdCard = Environment.getExternalStorage ...

  10. acm 2015北京网络赛 F Couple Trees 主席树+树链剖分

    提交 题意:给了两棵树,他们的跟都是1,然后询问,u,v 表 示在第一棵树上在u点往根节点走 , 第二棵树在v点往根节点走,然后求他们能到达的最早的那个共同的点 解: 我们将第一棵树进行书链剖,然后第 ...