H5——表单验证新特性,注册模态框!

<!DOCTYPE html>
<html>
<head lang="en">
    <meta charset="UTF-8">
    <title>用户注册表单页</title>
    <style>
       #form_content{
           width:600px;
           margin:0 auto;
           position:absolute;
           left:400px;
       }
       #form_content .dc{
           width:600px;
           margin-top:10px;
           overflow:hidden;
       }
       #form_content .dc h3{
           text-align:center;
       }
       #form_content b{
           display:inline-block;
           height:40px;
           line-height: 40px;
           margin-left:20px;
       }
        #form_content input{
            display:inline-block;
            height:34px;
            width:200px;
            border-radius:2px;
            margin-left:60px;
            padding-left:10px;
        }
        .pc{
            width:200px;
            height:40px;
            float:right;
            line-height:40px;
            text-align:center;
            margin:0 20px 0;
            background:#333;
            color:#fff;
            font-weight:bold;
            border-radius:8px;
            display:none;
        }
        input#sub{
            display:inline-block;
            width:215px;
            background:#f0f;
            margin-left:144px;
        }
        .show_pass{
            background:limegreen;
            display:block;
        }
        .show_warn{
            background:#e4393c;
            display:block;
        }
        #audio_bground{
            width:100%;
            height:100%;
            background:#afa;
            position:absolute;
            z-index:-10;
        }
    </style>
</head>
<body>
    <!--input 标签新特性-->
    <form>
        <!--email属性-->
        邮箱类型<input type="email"/><br/>
        <!--tel属性-->
        电话类型<input type="tel"/><br/>
        <!--number属性-->
        数字类型<input type="number"/><br/>
        <!--date属性-->
        日期类型<input type="date"/><br/>
        <!--month属性-->
        月份类型<input type="month"/><br/>
        <!--week属性-->
        周期类型<input type="week"/><br/>
        <!--range属性-->
        数字范围<input type="range" min="18" max="60"/><br/>
        <!--search属性-->
        搜素类型<input type="search"/><br/>
        <!--color属性-->
        颜色选择器<input type="color"/><br/>
        <!--url属性-->
        网址类型<input type="url"/><br/>
        <input type=‘submit‘/>
    </form>
        <hr/>
    <div id="form_content">
        <form action="">
            <div class="dc"><h3>用户注册页面</h3></div>
            <div class="dc"><b>用户昵称</b><input id="user" type="text" autofocus required pattern="^[0-9a-zA-Z]{6,10}$"/><p class="pc">请输入用户名</p></div>
            <div class="dc"><b>用户密码</b><input id="pwd" type="password" required pattern="^\w{8,12}$"/><p class="pc">请输入密码</p></div>
            <div class="dc"><b>个人邮箱</b><input id="email" type="email" required/><p class="pc">清输入邮箱</p></div>
            <div class="dc"><b>个人主页</b><input id="url" type="url" required/><p class="pc">请输入个人主页(可不填)</p></div>
            <div class="dc"><b>联系电话</b><input id="tel" type="tel" required/><p class="pc">请输入联系电话</p></div>
            <div class="dc"><b>你的年龄</b><input id="age" type="number" min="18" max="60" required/><p class="pc">请输入你的年龄</p></div>
            <div class="dc"><b>出生日期</b><input id="date" type="date" required/><p class="pc">请选择出生日期</p></div>
            <div class="dc"><input id="sub" type="submit" value="提交注册"/></div>
        </form>
    </div>
    <script>
        var uname=document.getElementById(‘user‘);
        uname.onfocus=function(){
            this.nextElementSibling.style.display=‘block‘;
            this.nextElementSibling.innerHTML=‘8-12数字或字母组成‘;
        }
        uname.onblur=function(){
            if(this.validity.valid){
                this.nextElementSibling.className=‘pc show_pass‘;
                this.nextElementSibling.innerHTML=‘用户名格式正确‘;
            }
            else if(this.validity.valueMissing) {
                this.nextElementSibling.className = ‘pc show_warn‘;
                this.nextElementSibling.innerHTML = ‘用户名不能为空‘;
            }else if(this.validity.patternMismatch){
                this.nextElementSibling.className=‘pc show_warn‘;
                this.nextElementSibling.innerHTML=‘用户名格式非法‘;
            }
        }
        var upwd=document.getElementById(‘pwd‘);
        upwd.onfocus=function(){
            this.nextElementSibling.style.display=‘block‘;
            this.nextElementSibling.innerHTML=‘6-12位数字/字母/英文符号组成‘;
        }
        upwd.onblur=function(){
            if(this.validity.valid){
                this.nextElementSibling.className=‘pc show_pass‘;
                this.nextElementSibling.innerHTML=‘密码格式正确‘;
            }else if(this.validity.valueMissing){
                this.nextElementSibling.className=‘pc show_warn‘;
                this.nextElementSibling.innerHTML=‘用户密码不能为空‘;
            }else if(this.validity.patternMismatch){
                this.nextElementSibling.className=‘pc show_warn‘;
                this.nextElementSibling.innerHTML=‘密码格式非法‘;
            }
        }
        var e_mail=document.getElementById(‘email‘);
        e_mail.onfocus=function(){
            this.nextElementSibling.style.display=‘block‘;
            this.nextElementSibling.innerHTML=‘请输入你的常用邮箱‘;
        }
        e_mail.onblur=function(){
            if(this.validity.valid) {
                this.nextElementSibling.className = ‘pc show_pass‘;
                this.nextElementSibling.innerHTML = ‘邮箱格式正确‘;
            }else if(this.validity.valueMissing){
                this.nextElementSibling.className=‘pc show_warn‘;
                this.nextElementSibling.innerHTML=‘邮箱不能为空‘;
            }else if(this.validity.typeMismatch){
                this.nextElementSibling.className=‘pc show_warn‘;
                this.nextElementSibling.innerHTML=‘邮箱格式有误‘;
            }
        }
        var url=document.getElementById(‘url‘);
        url.onfocus=function(){
            this.nextElementSibling.style.display=‘block‘;
            this.nextElementSibling.innerHTML=‘请输入你的个人主页(选填)‘;
        }
        url.onblur=function(){
            if(this.validity.valid) {
                this.nextElementSibling.className = ‘pc show_pass‘;
                this.nextElementSibling.innerHTML = ‘网址格式正确‘;
            }else if(this.validity.typeMismatch){
                this.nextElementSibling.className=‘pc show_warn‘;
                this.nextElementSibling.innerHTML=‘网址格式非法‘;
            }
        }
        var uphone=document.getElementById(‘tel‘);
        uphone.onfocus=function(){
            this.nextElementSibling.style.display=‘block‘;
            this.nextElementSibling.innerHTML=‘请输入你的联系电话‘;
        }
        uphone.onblur=function(){
            if(this.validity.valid){
                this.nextElementSibling.className=‘pc show_pass‘;
                this.nextElementSibling.innerHTML=‘电话号码格式正确‘;
           }else if(this.validity.valueMissing){
                this.nextElementSibling.className=‘pc show_warn‘;
                this.nextElementSibling.innerHTML=‘电话号码不能外空‘;
            }else if(this.validity.typeMismatch){
                this.nextElementSibling.className=‘pc show_warn‘;
                this.nextElementSibling.innerHTML=‘电话号码格式非法‘;
            }
        }
        var uage=document.getElementById(‘age‘);
        uage.onfocus=function(){
            this.nextElementSibling.style.diplay=‘block‘;
            this.nextElementSibling.innerHTML=‘请输入你的年龄‘;
        }
        uage.onblur=function(){
            if(this.validity.valid){
                this.nextElementSibling.className=‘pc show_pass‘;
                this.nextElementSibling.innerHTML=‘你的年龄符合注册要求‘;
            }else if(this.validity.rangeOverflow){
                this.nextElementSibling.className=‘pc show_warn‘;
                this.nextElementSibling.innerHTML=‘你的年龄大于注册范围‘;
            }else if(this.validity.rangeUnderflow){
                this.nextElementSibling.className=‘pc show_warn‘;
                this.nextElementSibling.innerHTML=‘你的年龄小于注册范围‘
            }else if(this.validity.valueMissing){
                this.nextElementSibling.className=‘pc show_warn‘;
                this.nextElementSibling.innerHTML=‘年龄不能为空‘;
            }
        }
        var udate=document.getElementById(‘date‘);
        udate.onfocus=function(){
           this.nextElementSibling.style.display=‘block‘;
            this.nextElementSibling.innerHTML=‘请输入你的出生日期‘;
        }
        udate.onblur=function(){
            if(this.validity.valueMissing){
                this.nextElementSibling.className=‘pc show_warn‘;
                this.nextElementSibling.innerHTML=‘出生日期不能为空‘;
            }else if(this.validity.valid){
                this.nextElementSibling.className=‘pc show_pass‘;
                this.nextElementSibling.innerHTML=‘已选择出生日期‘;
            }
        }
    </script>
</body>
</html>
时间: 2024-10-29 10:46:13

H5——表单验证新特性,注册模态框!的相关文章

不支持html5表单验证新特性的解决方案

下载 Alexander Farkas编写的“Webshims Lib”(http://afarkas.github.com/webshim/demos/)它可用于插入表单补丁(也可以为其他 HTML5特性打补丁),从而使不支持新特性的浏览器可以处理 HTML5 表单. 使用方法: a.下载 Webshims Lib(http://github.com/aFarkas/webshim/downloads)并解压: b.将其中的 js-webshim 文件夹复制到相应的位置: <script sr

H5表单验证

基本表单验证特性 placeholder   提示输入 autoconplete  下次输入自动提示 list和datalist 下拉菜单 autofocus   自动获取焦点 required   设置必填属性 pattern     表单认证使用正则 novalidate(form标签后使用).formnovalidate(input submit里面使用)  设置了必填提交表单不验证 原文地址:https://www.cnblogs.com/jian1234/p/9829528.html

angular js h5关于表单验证的例子

angular js表单验证 <!DOCTYPE html><html><head lang="en"> <meta charset="UTF-8"> <title></title> <script src="angular.min.js"></script> <link rel="stylesheet" href="

一些常用的表单验证的代码

一些常用的表单验证的代码 注册验证: <script language="JavaScript" src="js/jquery-1.9.1.min.js" type="text/javascript"></script> //验证表单 function vailForm(){ var form = jQuery("#editForm"); if(!vailNickName())return; if(!v

Java学习总计(二十六)——JavaScript正则表达式,Js表单验证,原生js+css页面时钟

一.JavaScript正则表达式1.exec检索字符串中指定的值,返回找到的值,并确定其位置2.test检索字符串中指定的值,返回true或false3.正则表达式对象的创建:(1)方式一:Var rgex=new RegExp("[0-9]","模式");(2)方式二:简便写法,用双斜杠//把正则表达式的内容括起来例1(正则创建,使用test()方法): <!DOCTYPE html> <html> <head> <me

atittit.表单验证的实现方式以及原理本质以及选型以及自定义兼容easyui dsl规则的表单验证

atittit.表单验证的实现方式以及原理本质以及选型以及自定义兼容easyui dsl规则的表单验证 1. 需求,表单验证需要弹框式,但目前easyui ms绑定死了tooltip式样 1 2. 表单验证表现形式 1 2.1. 弹框 1 2.2. 浮动tooltip,推荐这个 1 3. 表单验证的实现原理 1 3.1. 定义reg 2 3.2. 解释 2 3.3. 调用提示... 2 4. 表单验证框架选型easyui>ligerui 2 4.1. ligerui的表单验证选型... 2 4.

atittit.表单验证性质的原则和实施,以及选择和定义自己的兼容easyui dsl窗体身份验证规则

atittit.表单验证性质的原则和实施,以及选择和定义自己的兼容easyui dsl规则的表单验证 1. 需求,表单验证须要弹框式,但眼下easyui ms绑定死了tooltip式样 1 2. 表单验证表现形式 1 2.1. 弹框 1 2.2. 浮动tooltip.推荐这个 1 3. 表单验证的实现原理 1 3.1. 定义reg 2 3.2. 解释 2 3.3. 调用提示. .. 2 4. 表单验证框架选型easyui>ligerui 2 4.1. ligerui的表单验证选型. .. 2 4

HTML + CSS + JavaScript 实现注册页面信息验证(表单验证)

要求 创建一个注册页面,如下图. 然后再对注册信息进行判断,判断其是否符合要求.(如:密码6-16位字符,不能有空格等) 图片素材如下: 注册页面的整个框架 注册页面框架分析 页面内容主要分为三个部分: 我们可以使用三个块标签,可以将这三个部分分别放到每个块标签中. 注册页面框架的实现 第一部分:两个段落文本 <!-- 左边部分 --> <div class="rg_left"> <p>新用户注册</p> <p>USER RE

纯H5+c3实现表单验证

客户端验证是网页客户端程序最常用的功能之一,我们之前使用了各种各样的js库来进行表单的验证.HTML5其实早已为我们提供了表单验证的功能.至于为啥没有流行起来估计是兼容性的问题还有就是样式太丑陋了吧. 下面我们将来一步一步创造一个HTML5和CSS3的表单验证,只使用HTML和CSS. 完成后的如下: 第一步:整理验证字段和类型 首先我们需要如下几个字段: 姓名(full name) 电话号码(phone number) 邮箱地址(email address) 网址(website) 在用户输入