htm5 本地儲存

2021-07-11 16:49:59 字數 2146 閱讀 8155

>登入

title

>

<

script

>

$(document).ready(function()  

}  else  

}  });  

function logincheckajaxfunction()  

else  

//下次自動登入  

if(document.getelementbyid("isautologinid").checked)  

else  

if("" == $("input[name=loginaccout]").val())  

if("" == $("input[name=loginpwd]").val())  

$.ajax(,  

datatype:"json",//設定需要返回的資料型別    

success:function(data),  

error:function()//這裡不要加","    

});    

}  script

>

head

>

<

body

>

<

form

name="loginform"

action="<%=path %>/userlogin.action"

method="post"

>

<

div>

賬戶:  

<

input

type="text"

name="loginaccout"

id="loginaccout"

class="logininput"

size="18"

autofocus="autofocus"

maxlength="30"

required="required"

autocomplete="off"

placeholder="請輸入使用者名稱"

style="height:30px;width:160px"

/>

<

br/>

div>

<

div>

密碼:  

<

input

type="password"

name="loginpwd"

id="loginpwd"

size="18"

maxlength="15"

class="logininput"

required="required"

placeholder="請輸入密碼"

style="height:30px;width:160px"

/>

<

br/>

div>

<

div>

<

input

type="checkbox"

name="isremberpwd"

id="isremberpwdid"

/> 記住密碼   

<

input

type="checkbox"

name="isautologin"

id="isautologinid"

/> 下次自動登入  

div>

<

div>

<

aonclick="logincheckajaxfunction()"

class="button glow button-rounded button-flat-action"

>登入

a>

div>

form

>

body

>

html

>

h5本地儲存

web storage分為兩種 sessionstorage localstorage 從字面意思就可以很清楚的看出來,sessionstorage將資料儲存在session中,瀏覽器關閉也就沒了 而localstorage則一直將資料儲存在客戶端本地 儲存資料 localstorage.setit...

HTML5本地儲存

align center html5本地儲存 align b 1.1概述 b html5 儲存是基於鍵值對的。資料儲存在乙個鍵裡,訪問資料時可以根據同樣的鍵獲得上次儲存的資料。鍵是乙個字串。而資料則可以是任何型別的js基本資料型別,包括字串,boolean,整數,和浮點數。需要注意的是,這些資料在儲...

html5 本地儲存

前言 最近在做專案時遇到了需要將資料儲存在使用者瀏覽器本地的需求,經過查詢了解到了web storage,通過學習初步掌握了web storage,以下是一些關於web storage的知識和用法,記憶力較差發布在csdn備忘。1 什麼是html5本地儲存?通過web storage web應用程式...