使用JS獲取SessionStorage的值

參考:https://www.jb51.net/article/132729.htmjavascript

獲取sessionStorage的意義html

首先獲取它是爲了將得到的信息輸出或者alert();讓人容易看到,java

其次,在靜態頁面中,若是使用sessionStorage就至關於在動態頁面裏鏈接了數據庫同樣數據庫

例如:我上一篇所作的爲button按鈕添加回車事件的項目中所用到的能夠使用js中的sessionStorage獲取頁面輸入的信息,也能夠得到後臺計算所得的數據,而且顯示出來。session

廢話很少說,看代碼重要:.net

具體實現htm

<script type="text/javascript">
    function login(){
      var username=window.document.getElementById("username").value;
      var password=window.document.getElementById("password").value;
      if(password=="123456")
      {
        window.sessionStorage.setItem("username", username);
        window.location.href="../index1.html" rel="external nofollow" ;
      }else{
        alert("密碼錯誤請輸入正確的密碼,例如:123456!");
        return false;
      }
    }
</script>
<input type="text" id="username" class="11" placeholder="請輸入真實姓名"/>
<input type="password" id="password" placeholder="請輸入密碼(默認密碼123456)"/>
<input type="button" value="登陸考試" onclick="login()">

以上代碼是獲取username的值並傳到下一個界面blog

而且得到password的值與事先設置好的對比,不一樣就是錯誤 就不能夠登陸事件

<script>
   $(function () {
     var username= window.sessionStorage.getItem("username")
     $("#yhm").html("登陸用戶:"+username)
     $("#name").html(username)
     if(window.sessionStorage.getItem("username")===null){
       alert("您尚未登陸,請登陸後重試!")
       window.location.href="Pages/index.html" rel="external nofollow" rel="external nofollow" rel="external nofollow" ;
     }
     $("#esc").on("click",function(){
       window.sessionStorage.clear();
       window.location.href="Pages/index.html" rel="external nofollow" rel="external nofollow" rel="external nofollow" ;
     });
  })
 </script>

獲取前段頁面輸入的值而且顯示至對應的位置ip

<div id="yhm"></div>

而且判斷是否有sessionStorage的值,若是沒有,自動返回登陸頁面,並作出相應的提示

點擊事件觸發後清空sessionStorage的值

<script>
$("#esc").on("click",function(){
       window.sessionStorage.clear();
       window.location.href="Pages/index.html" rel="external nofollow" rel="external nofollow" rel="external nofollow" ;
     });
</script>

當點擊id爲esc的按鈕時觸發clear事件

<button id="esc" style="background-color: #FF0000">退出考試系統</button>

則自動返回登陸界面

相關文章
相關標籤/搜索