JavaScript 基础,登录前端验证

JavaScript 基础,登录前端验证

    1. <script></script>的三种用法:
      1. 放在<body>中
      2. 放在<head>中
      3. 放在外部JS文件中
    2. 三种输出数据的方式:
      1. 使用 document.write() 方法将内容写到 HTML 文档中。
      2. 使用 window.alert() 弹出警告框。
      3. 使用 innerHTML 写入到 HTML 元素。
        1. 使用 "id" 属性来标识 HTML 元素。
        2. 使用 document.getElementById(id) 方法访问 HTML 元素。
        3. 用innerHTML 来获取或插入元素内容。
          <!DOCTYPE html>
          <html lang="en">
          <head>
              <meta charset="UTF-8">
              <title>时间</title>
              <script type="text/javascript" src="../static/js2.js"></script>
          </head>
          <body>
              <p>Hello</p>
              <script>
                  document.write(Date())
              </script>
          <button type="button" onclick=window.alert("用户名不能以数字开头")>Login</button>
          </body>
          </html>

           

    3. 登录页面准备:
      1. 增加错误提示框。
      2. 写好HTML+CSS文件。
      3. 设置每个输入元素的id
    4. 定义JavaScript 函数。
      1. 验证用户名6-20位
      2. 验证密码6-20位
    5. onclick调用这个函数。
    6. <!DOCTYPE html>
      <html lang="en">
      <head>
      
          <body bgcolor="#f5deb3">
          <meta charset="UTF-8">
          <title>欢迎登陆正版官方系统</title>
          <link href="../static/css/denglu.css" rel="stylesheet" type="text/css">
          <script>
              function mylogin() {
                  var oUname=document.getElementById("uname");
                  var oError=document.getElementById("error_box");
                  if(oUname.value.length<6||oUname.value.length>20){
                  oError.innerHTML="用户名必须大于6位或少于20位!"
              }
      
              }
          </script>
      </head>
      <body >
      <div class="box">
                 <h1>用户登录</h1>
       <div class="input_box">
           <input id="uname" type="text" placeholder="请输入用户名">
       </div>
              <div class="input_box">
                  <input id="upass" type="password" placeholder="请输入密码">
              </div>
              <div id="error_box"><br></div>
         <div class="input_box">
             <button onclick="mylogin()">登录</button>
         </div>
      
      
      
          </div>
      </body></body>
      div{
          margin: 0 auto;
          text-align: center;
          background-color:khaki;
      
      }
      
      .input_box{
          width: 300px;
          height: 30px;
          border-bottom-color:coral;
          border-bottom-style: groove;
          border-bottom-width: 2px;
          line-height: 30px;
          font-weight: bold;
          background-color:seashell;
      }
      .input_box{
          font-size: 8px;
          font-weight: bold;
          border-color: blanchedalmond;
      }
      .error_box{
           width: 300px;
          height: 30px;
          border-bottom-color:coral;
          border-bottom-style: groove;
          border-bottom-width: 2px;
          line-height: 30px;
          font-weight: bold;
          background-color:darkorange;
      }

       

posted @ 2017-10-26 13:13 林丹宜 阅读( ...) 评论( ...) 编辑 收藏
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值