JavaScript 基础,登录前端验证

Posted 李海力

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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>
</head>

<body style="text-align: center;">
<p id="kyle"></p>
    <script>
     document.write(Date());
     document.getElementById("ben").innerHTML="现在的时间是:";
</script>
 <p></p>
<button type="button" onclick=window.alert("用户不存在!")>登录</button>
</body>
</html>

 


<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <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>
    <link rel="stylesheet" href="123.css">
     <link href="123.css" rel="stylesheet" type="text/css">
       <link href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css" rel="stylesheet">
</head>
<body style="text-align: center;>
  <div class="box" >
    <h1>用户请登录:</h1>
    <form class="form" method="post" action="#">
      <p class="lg1" >
        <input id="uname" type="text" name="login" placeholder="Username" required/>
        <i class="fa fa-user"></i>
      </p style="text-align: center;>
      <p class="lg2" >
        <input type="password" name="password" placeholder="Password" required/>
        <i class="fa fa-lock"></i>
      </p>
        <p class="design"><input type="submit" name="sent" value="Login" onclick="myLogin()"></p>
        <div id="error_box"><br></div>
    </form>
  </div style="text-align: center;>
<div class="box" >
    <p> 2017. Created by <a href="#" target="_blank">kyle</a></p>
</div>
</body>
</html>

 

 

css:

div{
    margin:0 auto;
    text-align:center;
    backgroup-color: gray;
}
.box{
    width:500px;
    height:250px;
    border-color:pink;
    border-width:1px;
    margin-top:100px;
}
.lg1{
    font-size: 20px;
    color: pink;

}
.box2{
    font-size:16px;
    font-weight:bold;
    color: pink;
 }
.lg2{
    width:100px;
    height:30px;
    boder-style:hidden;
}
.design{
    font-size:8px;
    color:pink;
}

 

以上是关于JavaScript 基础,登录前端验证的主要内容,如果未能解决你的问题,请参考以下文章

JavaScript 基础,登录前端验证

JavaScript 基础,登录前端验证

JavaScript 基础,登录前端验证

JavaScript 基础,登录前端验证

JavaScript 基础,登录前端验证

JavaScript 基础,登录前端验证