溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

怎么使用JS實現(xiàn)簡單的登錄驗證功能

發(fā)布時間:2021-04-24 12:27:19 來源:億速云 閱讀:315 作者:小新 欄目:web開發(fā)

這篇文章主要介紹了怎么使用JS實現(xiàn)簡單的登錄驗證功能,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。

js有什么特點

1、js屬于一種解釋性腳本語言;2、在絕大多數(shù)瀏覽器的支持下,js可以在多種平臺下運行,擁有著跨平臺特性;3、js屬于一種弱類型腳本語言,對使用的數(shù)據(jù)類型未做出嚴格的要求,能夠進行類型轉(zhuǎn)換,簡單又容易上手;4、js語言安全性高,只能通過瀏覽器實現(xiàn)信息瀏覽或動態(tài)交互,從而有效地防止數(shù)據(jù)的丟失;5、基于對象的腳本語言,js不僅可以創(chuàng)建對象,也能使用現(xiàn)有的對象。

實現(xiàn)過程示意圖

怎么使用JS實現(xiàn)簡單的登錄驗證功能

代碼

<!DOCTYPE html>
  <html>
  <head>
  <meta charset="UTF-8">
  <title>登錄</title>
  <style>
    .ok {
      color: green;
      border: 1px solid green;
    }
    .error {
      color: red;
      border: 1px solid red;
    }
  </style>
  <script>
    //校驗賬號的格式
    function check_code() {
      console.log(1);
      //獲取賬號
      var code =
        document.getElementById("code").value;
      //校驗其格式(\w字母或數(shù)字或下劃線)
      var span =
        document.getElementById("code_msg");
      var reg = /^\w{6,10}$/;
      if(reg.test(code)) {
        //通過,增加ok樣式
        span.className = "ok";
      } else {
        //不通過,增加error樣式
        span.className = "error";
      }
    }
    function check_pwd(){
      console.log(2);
      var code2 =document.getElementById("pwd").value;
      var span2 =
        document.getElementById("pwd_msg");
      var reg2 = /^\w{6,10}$/;
      if(reg2.test(code2)) {
        span2.className = "ok";
      } else {
        span2.className = "error";
      }

    }
  </script>
  </head>
  <body>
    <form action="http://www.tmooc.cn">
      <p>
        賬號:
        <input type="text" id="code" onblur="check_code()"/>
        <span id="code_msg">6-10位字母、數(shù)字、下劃線</span>
      </p>
      <p>
        密碼:
        <input type="text" id="pwd" onblur="check_pwd()" />
        <span id="pwd_msg">8-20位字母、數(shù)字、下劃線</span>
      </p>
      <p><input type="submit" value="登錄"/></p>
    </form>
  </body>
  </html>

下面在看一段簡單的代碼關(guān)于javascript實現(xiàn)簡單的用戶登錄驗證

代碼如下所示:

<!DOCTYPE html>
 <html lang="en">
 <head>
   <meta charset="UTF-8">
   <title>Document</title>
 </head>
 <body>
   <script type="text/javascript">
     function check() {
    if(document.getElementById("username").value=="") {
        alert("沒有輸入用戶名!");
         return false;
      } else if(document.getElementById("password").value=="") {
        alert("沒有輸入密碼!");
        return false;
      } else {
        alert("提交成功!")
        return true;
       }
    }
   </script>
  <form name="form1">
   <input type="text" id="username">
  <input type="password" id="password" >
  <input type="submit" onclick="check()">
  </form>  
 </body>
 </html>

感謝你能夠認真閱讀完這篇文章,希望小編分享的“怎么使用JS實現(xiàn)簡單的登錄驗證功能”這篇文章對大家有幫助,同時也希望大家多多支持億速云,關(guān)注億速云行業(yè)資訊頻道,更多相關(guān)知識等著你來學(xué)習(xí)!

向AI問一下細節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

js
AI