首頁  >  文章  >  後端開發  >  js實作簡單登入功能的實例程式碼

js實作簡單登入功能的實例程式碼

不言
不言原創
2018-05-04 15:08:572672瀏覽

這篇文章主要介紹了關於js實作簡單登入功能的實例程式碼,有著一定的參考價值,現在分享給大家,有需要的朋友可以參考一下

##複製程式碼 程式碼如下:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <head>
    <title>Login.html</title>

    <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
    <meta http-equiv="description" content="this is my page">
    <meta http-equiv="content-type" content="text/html; charset=UTF-8">

    <!--<link rel="stylesheet" type="text/css" href="./styles.css">-->
    <script type="text/javascript">
      function checkuser() {
         if($(&#39;uname&#39; == "lala") && $(&#39;pwd&#39;) == "123") {
           return true;
         }else {
            return false;
         }
      }

      function $(id) {
        return document.getElementById(id).value;
      }
     </script>
  </head>

  <body>
    <form action="ok.html">
      u:<input type="text" id="uname"/><br>
      p:<input type="password" id="pwd"/><br>
      <input type="submit" value="登录" onclick="return checkuser()"/>
    </form>
  </body>
</html>

這是登入頁面,只有當使用者名稱為lala,密碼為123時登入成功。在onclick事件處使用return,是在使用者名稱和密碼輸入不符時,阻止頁面跳轉。登入成功頁面中,含有等待秒數,程式碼為:


複製程式碼 程式碼如下:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <head>
    <title>ok.html</title>

    <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
    <meta http-equiv="description" content="this is my page">
    <meta http-equiv="content-type" content="text/html; charset=UTF-8">

    <!--<link rel="stylesheet" type="text/css" href="./styles.css">-->
    <script type="text/javascript">
        function tiao() {
          clearInterval(mytime);
          window.open("manage.html","_self");
        }

        setTimeout("tiao()",5000);

        function changeSec() {
           //得到myspan值
           $(&#39;myspan&#39;).innerText=$(&#39;myspan&#39;).innerText-1;
        }

         function $(id) {
        return document.getElementById(id);
      }
        var mytime = setInterval("changeSec()",1000);
    </script>
  </head>

  <body>
    登录成功,<span id="myspan">5</span>秒后自动跳转到管理页面
  </body>
</html>

關鍵在幾個函數的使用,setTimeout( "tiao()",5000);函數是開啟頁面,等待5秒,呼叫tiao()函數。 setInterval("changeSec()",1000);函數是每隔1秒呼叫一次changeSec()函數。這樣就完成了簡單的登入功能。

相關推薦:

JS實作快取演算法步驟詳解

JS實作摩天輪抽獎

#

以上是js實作簡單登入功能的實例程式碼的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn