Web Storage Local Storage sessionstorage

Source: Internet
Author: User
Tags sessionstorage
<! DOCTYPEHTML> <HTML> < Head> <Metacharset="Utf-8"> <title> Local Storage localstorage </title> </ Head> < Body> <inputid="MSG"type="Text"/> <inputid="SetData"type="button"value="Save Data"/> <inputid="GetData"type="button"value="Get Data"/> <Scripttype="Text/javascript">window. onload =function() {Alert ("When you close this page or close the browser, the data saved in the localstorage disappears, which means that when you reopen the page, you click on the data to get the data." "//First get 3 input elements in the bodyvarmsg =Document. getElementById ("MSG");varGetData =Document. getElementById ("GetData");varSetData =Document. getElementById ("SetData"); Setdata.onclick =function()//Deposit Data {if(Msg.value) {Sessionstorage. SetItem ("Data", Msg.value); Alert"Information has been saved in the data field"); }Else {Alert ("Information cannot be empty"); }} Getdata.onclick =function()//Get Data {varmsg =Sessionstorage. GetItem ("Data");if(msg) {Alert ("The value in the data field is:"+ msg); }Else {Alert (The data field has no value. "); }}} </Script> </ Body> </HTML>

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

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.