当前位置:  开发笔记 > 编程语言 > 正文

最简单的JQuery验证规则示例

如何解决《最简单的JQuery验证规则示例》经验,为你挑选了2个好方法。

以下HTML表单成功使用了jQuery的表单验证,如果留空,则在表单字段右侧显示"此字段是必需的",如果输入的字符少于2个,则"请输入至少2个字符".但是,我不想使用"cname"表单输入字段中的class和minlength属性指定验证元数据,而是使用jQuery的"规则"API,其中规则在validate函数的主体中指定.提前致谢:

    


  
  
  



 
A simple comment form with submit validation and default messages

*

Ayo.. 14

rules: {
    cname: {
        required: true,
        minlength: 2
    }
},
messages: {
    cname: {
        required: "
  • Please enter a name.
  • ", minlength: "
  • Your name is not long enough.
  • " } }


    George Jempt.. 12

    此博客文章中包含的示例可以解决问题.



    1> Ayo..:
    rules: {
        cname: {
            required: true,
            minlength: 2
        }
    },
    messages: {
        cname: {
            required: "
  • Please enter a name.
  • ", minlength: "
  • Your name is not long enough.
  • " } }



    2> George Jempt..:

    此博客文章中包含的示例可以解决问题.


    我是积极主动并添加链接的情况下,存档,web.archive.org文章原文链接永远不会消逝:http://web.archive.org/web/20120108075037/http://www.raymondcamden的.com/index.cfm/2009/2/10 /安介绍到jQuery的和表格验证-2-
    您应该只清除此链接的答案.
    推荐阅读
    Gbom2402851125
    这个屌丝很懒,什么也没留下!
    DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
    Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有