localStorage ใช้เพื่อยืนยันข้อมูลในหลายเซสชัน มีขนาดสูงสุด 5MB
ตัวอย่าง
คุณสามารถลองเรียกใช้ข้อมูลโค้ดต่อไปนี้เพื่อตรวจสอบขนาดที่จัดสรร -
var sum = 0; // loop for size for(var i in localStorage) { var amount = (localStorage[i].length * 2) / 1024 / 1024; sum += amount; document.write( i + " = " + amount.toFixed(2) + " MB"); } document.write( "Total = " + sum.toFixed(2) + " MB");