如何更改JQuery验证程序语言消息

如何更改JQuery验证程序语言消息

本文介绍了如何更改JQuery验证程序语言消息的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我在 http://bassistance.de/jquery-plugins中使用JQuery验证程序/jquery-plugin-validation/.我该怎么做,以便消息是自定义的,而不是英语.

Am using the JQuery Validator from http://bassistance.de/jquery-plugins/jquery-plugin-validation/. How can i make it so that the messages are custom and not in english.

推荐答案

这样做:

$(document).ready(function() {
  $("form#login").validate({
    lang: 'en'  // or whatever language option you have.
  });
});

如果您希望提供的语言不是默认语言之一,请执行以下操作:

If the language you wish to supply is not one of the default languages, then do this:

$.tools.validator.localize("fi", {
    '*'          : 'Virheellinen arvo',
    ':email'     : 'Virheellinen sähköpostiosoite',
    ':number'    : 'Arvon on oltava numeerinen',
    ':url'       : 'Virheellinen URL',
    '[max]'      : 'Arvon on oltava pienempi, kuin $1',
    '[min]'      : 'Arvon on oltava suurempi, kuin $1',
    '[required]' : 'Kentän arvo on annettava'
});

  $("form#login").validate({
    lang: 'fi'
  });

有关更多说明,请参见这些说明.

See these instructions for more.

这篇关于如何更改JQuery验证程序语言消息的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-29 19:30