jquery.validate自定义验证方法(检验邮箱是否存在)

本文主要是介绍jquery.validate自定义验证方法(检验邮箱是否存在),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

1.前端页面代码

<form method="post" id="registerInfo" action="${ctx }/user/register">
            <div class="accountInfoTitle"><div class="accountInfoTitleText">Create Your Account</div><div class="accountInfoTitleLine"></div></div>
            <div class="email">
                <div class="boxname"><span>*</span>Email:</div>
                <div><input  type="text" name="email" value="${user.email }" id="email"/></div>
            </div>

             <div class="submit">
                <input type="submit" value="Create My Account" id="registersubmit" οnclick="registerCheck()"/>
            </div>

</form>

2.javascript脚本

//注册信息验证
$(function(){
    //自定义检验邮箱是否存在的方法
    $.validator.addMethod(
            "checkEmailIsExsited",
            function(value,element,param){
                var a=checkEmail(value);
                if(a=="1"){
                    alert(1);
                }else{
                    alert(0);
                }
            }
    );
    $("#registerInfo").validate({
        submitHandler:function(form){
            $.cookie("email", decodeURI($("#email").val()),"{expires:7,secure:true}");
            form.submit();
        } ,
        rules:{
            email:{
                required:true,
                email:true,
                remote:{
                      url: "checkEmail",     //后台处理程序
                      type: "POST",               //数据发送方式
                      dataType: "json",           //接受数据格式   
                      data: {                     //要传递的数据
                          email: function() {
                           return $("#email").val();
                          }
                      }
                 }
            },
            password:{
                required:true,
                minlength:6
            },
            repassword:{
                required:true,
                equalTo: "#password"
            },
            companyAddress:{
                required:true
            },
            bizContactor:{
                required:true
            },
            companyName:{
                required:true
            },
            phoneNo:{
                required:true
            },
            codeShow:{
                required:true
            }
        },
        messages:{
            email:{
                required:"Account field is required.",
                email:"Please enter a valid email address.",
                remote:"This Email has been registered, you can <a href='${ctx}/user/toLogin'>[ login ]</a>"
            },
            password:{
                required:"Password field is required.",
                minlength:"Password length must be greater than 6."
            },
            repassword:{
                required:"Confirm Password field is required.",
                equalTo: "Please enter the same value again."
            },
            companyAddress:{
                required:"Company address field is required."
            },
            bizContactor:{
                required:"BizContactor field is required."
            },
            companyName:{
                required:"Company name field is required."
            },
            phoneNo:{
                required:"Phone number field is required."
            },
            codeShow:{
                required:"Please enter verification code."
            }
        },
        errorElement: "em",
        focusInvalid: true,
        success: function(em) {
            em.text("").addClass("success");
        }
    });
});

3.后台java代码

/**
     * 检验邮箱是否存在
     *
     * @return
     * @author ZuoChangjun 2014-11-27 15:02:54
     */
    @RequestMapping({ "/checkEmail" })
    public String checkEmail(@RequestParam String email,HttpServletResponse response) {
        PrintWriter pw = null;
        try {
            User user = userService.selectByEmail(email);
            pw = response.getWriter();
            if (user == null) {
                pw.print("true");     //此处需要注意   为字符形式的true/false
            } else {
                pw.print("false");
            }
        } catch (Exception e) {
            LOG.error(e.getMessage(), e);
            return ErrorPages._500;
        } finally {
            if (pw != null) {
                pw.close();
            }
        }
        return null;
    }

      

这篇关于jquery.validate自定义验证方法(检验邮箱是否存在)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1026102

相关文章

Vue3 的 shallowRef 和 shallowReactive:优化性能

大家对 Vue3 的 ref 和 reactive 都很熟悉,那么对 shallowRef 和 shallowReactive 是否了解呢? 在编程和数据结构中,“shallow”(浅层)通常指对数据结构的最外层进行操作,而不递归地处理其内部或嵌套的数据。这种处理方式关注的是数据结构的第一层属性或元素,而忽略更深层次的嵌套内容。 1. 浅层与深层的对比 1.1 浅层(Shallow) 定义

Spring Security基于数据库验证流程详解

Spring Security 校验流程图 相关解释说明(认真看哦) AbstractAuthenticationProcessingFilter 抽象类 /*** 调用 #requiresAuthentication(HttpServletRequest, HttpServletResponse) 决定是否需要进行验证操作。* 如果需要验证,则会调用 #attemptAuthentica

这15个Vue指令,让你的项目开发爽到爆

1. V-Hotkey 仓库地址: github.com/Dafrok/v-ho… Demo: 戳这里 https://dafrok.github.io/v-hotkey 安装: npm install --save v-hotkey 这个指令可以给组件绑定一个或多个快捷键。你想要通过按下 Escape 键后隐藏某个组件,按住 Control 和回车键再显示它吗?小菜一碟: <template

【 html+css 绚丽Loading 】000046 三才归元阵

前言:哈喽,大家好,今天给大家分享html+css 绚丽Loading!并提供具体代码帮助大家深入理解,彻底掌握!创作不易,如果能帮助到大家或者给大家一些灵感和启发,欢迎收藏+关注哦 💕 目录 📚一、效果📚二、信息💡1.简介:💡2.外观描述:💡3.使用方式:💡4.战斗方式:💡5.提升:💡6.传说: 📚三、源代码,上代码,可以直接复制使用🎥效果🗂️目录✍️

【前端学习】AntV G6-08 深入图形与图形分组、自定义节点、节点动画(下)

【课程链接】 AntV G6:深入图形与图形分组、自定义节点、节点动画(下)_哔哩哔哩_bilibili 本章十吾老师讲解了一个复杂的自定义节点中,应该怎样去计算和绘制图形,如何给一个图形制作不间断的动画,以及在鼠标事件之后产生动画。(有点难,需要好好理解) <!DOCTYPE html><html><head><meta charset="UTF-8"><title>06

【C++】_list常用方法解析及模拟实现

相信自己的力量,只要对自己始终保持信心,尽自己最大努力去完成任何事,就算事情最终结果是失败了,努力了也不留遗憾。💓💓💓 目录   ✨说在前面 🍋知识点一:什么是list? •🌰1.list的定义 •🌰2.list的基本特性 •🌰3.常用接口介绍 🍋知识点二:list常用接口 •🌰1.默认成员函数 🔥构造函数(⭐) 🔥析构函数 •🌰2.list对象

浅谈主机加固,六种有效的主机加固方法

在数字化时代,数据的价值不言而喻,但随之而来的安全威胁也日益严峻。从勒索病毒到内部泄露,企业的数据安全面临着前所未有的挑战。为了应对这些挑战,一种全新的主机加固解决方案应运而生。 MCK主机加固解决方案,采用先进的安全容器中间件技术,构建起一套内核级的纵深立体防护体系。这一体系突破了传统安全防护的局限,即使在管理员权限被恶意利用的情况下,也能确保服务器的安全稳定运行。 普适主机加固措施:

webm怎么转换成mp4?这几种方法超多人在用!

webm怎么转换成mp4?WebM作为一种新兴的视频编码格式,近年来逐渐进入大众视野,其背后承载着诸多优势,但同时也伴随着不容忽视的局限性,首要挑战在于其兼容性边界,尽管WebM已广泛适应于众多网站与软件平台,但在特定应用环境或老旧设备上,其兼容难题依旧凸显,为用户体验带来不便,再者,WebM格式的非普适性也体现在编辑流程上,由于它并非行业内的通用标准,编辑过程中可能会遭遇格式不兼容的障碍,导致操

透彻!驯服大型语言模型(LLMs)的五种方法,及具体方法选择思路

引言 随着时间的发展,大型语言模型不再停留在演示阶段而是逐步面向生产系统的应用,随着人们期望的不断增加,目标也发生了巨大的变化。在短短的几个月的时间里,人们对大模型的认识已经从对其zero-shot能力感到惊讶,转变为考虑改进模型质量、提高模型可用性。 「大语言模型(LLMs)其实就是利用高容量的模型架构(例如Transformer)对海量的、多种多样的数据分布进行建模得到,它包含了大量的先验

【北交大信息所AI-Max2】使用方法

BJTU信息所集群AI_MAX2使用方法 使用的前提是预约到相应的算力卡,拥有登录权限的账号密码,一般为导师组共用一个。 有浏览器、ssh工具就可以。 1.新建集群Terminal 浏览器登陆10.126.62.75 (如果是1集群把75改成66) 交互式开发 执行器选Terminal 密码随便设一个(需记住) 工作空间:私有数据、全部文件 加速器选GeForce_RTX_2080_Ti