91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

使用JS獲取SessionStorage的值

發布時間:2020-08-22 04:00:31 來源:腳本之家 閱讀:162 作者:全滿 關注 欄目:web開發

獲取sessionStorage的意義

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

其次,在靜態頁面中,如果使用sessionStorage就相當于在動態頁面里連接了數據庫一樣

例如:我上一篇所做的為button按鈕添加回車事件的項目中所用到的可以使用js中的sessionStorage獲取頁面輸入的信息,也可以獲得后臺計算所得的數據,并且顯示出來。

廢話不多說,看代碼重要:

具體實現

<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的值并傳到下一個界面

并且獲得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>

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

<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" >退出考試系統</button> 

則自動返回登錄界面

總結

以上所述是小編給大家介紹的使用JS獲取SessionStorage的值,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回復大家的。在此也非常感謝大家對億速云網站的支持!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

金平| 南充市| 方城县| 嘉兴市| 陆川县| 河池市| 樟树市| 方正县| 长兴县| 阿克| 弥勒县| 全州县| 北安市| 施甸县| 隆化县| 郁南县| 南木林县| 广平县| 高青县| 牟定县| 东乡族自治县| 江安县| 江城| 长阳| 永靖县| 本溪| 新疆| 阿克陶县| 汾阳市| 洪洞县| 澎湖县| 新和县| 贺州市| 建平县| 武功县| 永安市| 综艺| 祁阳县| 右玉县| 都匀市| 大化|