首页 前端知识 使用jQuery写一个注册界面

使用jQuery写一个注册界面

2024-04-15 09:04:46 前端知识 前端哥 202 812 我要收藏

写一个注册页面,包含用户名、密码、二次输入密码、邮箱地址。
必须校验内容:
1. 用户名必须包含英文字母和数字;
2. 密码必须大于6位;
3. 两次密码必须一致;
4. 邮箱必须包含.com和@符号,@符号后必须是:gmail、163、qq、woniu其中之一;
5. 用户名、密码、二次输入密码、邮箱都不能为空。
 

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <link rel="stylesheet" type="text/css" href="../../pack/bootstrap/css/bootstrap.min.css"/>
    <script type="text/javascript" src="../js/jquery-3.6.3.js"></script>
    <style>

        body{
            background-image: url("../img/q.jpg");
            background-repeat: no-repeat;
            background-attachment: fixed;
            background-size: cover;
        }
        .login-frame {
            width: 450px;
            height: 500px;
            margin-top: 200px;
        }

        .login-head {
            width: 450px;
            height: 70px;
            background-color: rgba(37, 169, 210, 0.80);
            text-align: center;
            line-height: 100px;
            font-size: 10px;
            font-weight: bold;
            color: rgba(245, 245, 245, 0.90);
            padding-top: 1px;
            border-top-left-radius: 15px;
            border-top-right-radius: 15px;
        }

        .login-
转载请注明出处或者链接地址:https://www.qianduange.cn//article/4971.html
标签
评论
发布的文章

HTML5 新增元素

2024-06-22 10:06:20

【前端】HTML5基础

2024-06-22 10:06:36

大家推荐的文章
会员中心 联系我 留言建议 回顶部
复制成功!