บบที่ 9 HTML5 Web Storage
   Web Storage คือการเก็บข้อมูลแบบง่ายๆ ในรูป Key-Value โดยแยกย่อยได้อีก 2 อย่าง คือ
1.Local Storage จะเก็บข้อมูลไว้ได้นานและมากกว่า cookie หลายเท่า และข้อมูลจะยังคงอยู่แม้ว่าจะปิด browser หรือลบ cookie ไปแล้ว
2.session Storage เหมือนกัน Local Storage แทบทุกประการ ยกเว้นมันจะถูกลบค่าทิ้งทุกครั้งที่เราปิด browser
   ในการใช้งาน Web Storage นั้น รองรับเฉพาะการเก็บข้อมูลที่เป็น String ดังนั้น หากเราต้องการเก็บ Object ทั้งก้อนลงใน Local Storage หรือ Session Storage ก็ต้องทำการแปลงข้อมูลจาก Object ให้เป็น String เสียก่อน  บราวเซอร์ที่สนับสนุน HTML5 Web Storage คือInternet Explorer 8+, Firefox, Opera, และ, and Safari.

ตัวอย่าง
1.Local Storage

<html>
<body>

<div id="result"></div>
<script>
if(typeof(Storage)!=="undefined")
  {
  localStorage.lastname="Smith";
  document.getElementById("result").innerHTML="Last name: " + localStorage.lastname;
  }
else
  {
  document.getElementById("result").innerHTML="Sorry, your browser does not support web storage...";
  }
</script>

</body>
</html>

ผลลัพธ์คือ

2.session Storage

<html>
<head>
<script>
function clickCounter()
{
if(typeof(Storage)!=="undefined")
  {
  if (sessionStorage.clickcount)
    {
    sessionStorage.clickcount=Number(sessionStorage.clickcount)+1;
    }
  else
    {
    sessionStorage.clickcount=1;
    }
  document.getElementById("result").innerHTML="You have clicked the button " + sessionStorage.clickcount + " time(s) in this session.";
  }
else
  {
  document.getElementById("result").innerHTML="Sorry, your browser does not support web storage...";
  }
}
</script>
</head>
<body>
<p><button onclick="clickCounter()" type="button">Click me!</button></p>
<div id="result"></div>
<p>Click the button to see the counter increase.</p>
<p>Close the browser tab (or window), and try again, and the counter is reset.</p>
</body>
</html>

ผลลัพธ์คือ


ข้อมูลอ้างอิง
http://www.w3schools.com

กระทู้ล่าสุดจากเว็บบอร์ด
หัวข้อกระทู้
ตอบ
เปิดดู
ล่าสุด
ปลั้กอิน googlemap
โดย Anonymous อ 29 ม.ค. 2013 6:28 pm บอร์ด สอบถามปัญหาการใช้ phpBB3, SMF, Joomla, Wordpress, CMS, CRM
2
1819
พฤ 31 ม.ค. 2013 9:24 am โดย บุคคลทั่วไป View Topic ปลั้กอิน googlemap
การลบข้อมูล2ฟิลด์
โดย Anonymous อ 27 ม.ค. 2013 11:02 pm บอร์ด Programming - PHP
1
1107
พ 30 ม.ค. 2013 11:46 am โดย Chayyim View Topic การลบข้อมูล2ฟิลด์
Update Server MCharts - J25
โดย tsukasaz พ 30 ม.ค. 2013 11:16 am บอร์ด Mcharts
6
38
อ 16 มิ.ย. 2015 6:21 pm โดย tsukasaz View Topic Update Server MCharts - J25
แก้รูปธงชาติไทยแล้ว
โดย tiamkeaw อ 29 ม.ค. 2013 7:28 pm บอร์ด Vitamin - Prestashop
0
4
อ 29 ม.ค. 2013 7:28 pm โดย tiamkeaw View Topic แก้รูปธงชาติไทยแล้ว
แก้ url ภาษาไทย ในหน้าเพิ่มสินค้า
โดย tiamkeaw อ 29 ม.ค. 2013 7:24 pm บอร์ด Vitamin - Prestashop
0
3
อ 29 ม.ค. 2013 7:24 pm โดย tiamkeaw View Topic แก้ url ภาษาไทย ในหน้าเพิ่มสินค้า
Update Server MCharts 1.0.1 (29 มกราคม 2556)
โดย tsukasaz อ 29 ม.ค. 2013 4:01 pm บอร์ด Mcharts
0
6
อ 29 ม.ค. 2013 4:01 pm โดย tsukasaz View Topic Update Server MCharts 1.0.1 (29 มกราคม 2556)
publish ในส่วน Content Bot ที่ crawl ก่อนหน้านี้
โดย mindphp อ 29 ม.ค. 2013 3:46 pm บอร์ด Msearch V2
1
5
อ 29 ม.ค. 2013 4:28 pm โดย tsukasaz View Topic publish ในส่วน Content Bot ที่ crawl ก่อนหน้านี้
bot train error
โดย mindphp อ 29 ม.ค. 2013 12:16 pm บอร์ด Msearch V2
1
6
อ 29 ม.ค. 2013 3:20 pm โดย tsukasaz View Topic bot train error