h5-26-web本機存放區

來源:互聯網
上載者:User

標籤:length   rem   oca   ++   body   res   清空   local   als   

<!DOCTYPE html><html><head><meta charset="UTF-8"><title></title></head><body><input type="button" value="返回個數" onclick="getLen()" /><input type="button" value="增加" onclick="add();" /><input type="button" value="修改" onclick="update();" /><input type="button" value="刪除" onclick="del();" /><input type="button" value="返回value" onclick="get();" /><input type="button" value="返回key" onclick="getKey();" /><input type="button" value="清空" onclick="delAll();" /><script>var i = localStorage.length; //計數變數//返回web儲存的索引值對的個數function getLen() {alert(localStorage.length); }//設定索引值對function add() {localStorage.setItem(‘username‘ + i,‘jack‘ + i);i ++;alert(‘儲存成功‘);}//修改索引值對function update() {localStorage.setItem(‘username2‘,‘李四‘);alert(‘修改成功‘);}//刪除索引值對function del() {localStorage.removeItem(‘username2‘);alert(‘刪除成功‘);}//返回鍵對應的值function get() {var result = localStorage.getItem(‘username3‘);alert(result);}//通過下標,返回keyfunction getKey() {var key = localStorage.key(3);alert(key);}//刪除所有資料function delAll() {localStorage.clear();alert(‘資料被清空‘);}</script></body></html>

  

h5-26-web本機存放區

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.