HTML DOM लोकलस्टोरेज प्रॉपर्टीज यूजर को भविष्य के संदर्भ के लिए स्थानीय ब्राउज़र में ही की-वैल्यू पेयर स्टोर करने में सक्षम बनाती है। जब तक स्पष्ट रूप से हटाया/साफ़ नहीं किया जाता तब तक कुंजी-मूल्य जोड़े खो नहीं जाते हैं।
सिंटैक्स
निम्नलिखित वाक्य रचना है -
Window.localStorage
यहाँ, लोकलस्टोरेज में निम्नलिखित गुण/विधियाँ हो सकती हैं -
- सेटआइटम('कुंजी','मान ')
- getItem('कुंजी')
- निकालें आइटम ('कुंजी')
आइए हम लोकलस्टोरेज प्रॉपर्टीज . का एक उदाहरण देखें -
उदाहरण
<!DOCTYPE html> <html> <head> <title>LocalStorage clear()</title> <style> form { width:70%; margin: 0 auto; text-align: center; } * { padding: 2px; margin:5px; } input[type="button"] { border-radius: 10px; } table,th,td { border:1px solid black; border-collapse: collapse; margin: 0 auto; } </style> </head> <body> <form> <fieldset> <legend>LocalStorage clear( )</legend> <table> <tr> <th>Key</th> <th>Value</th> </tr> <tr> <td>PassKey</td> <td>ja12ertplo</td> </tr> </table> <input type="button" value="Store Key" onclick="storeData()"> <input type="button" value="Delete Key" onclick="clearData()"> <div id="divDisplay"></div> </fieldset> </form> <script> var divDisplay = document.getElementById("divDisplay"); var extStyle = document.getElementById("extStyle"); function clearData(){ localStorage.clear(); divDisplay.textContent = 'Succesfully Deleted'; } function storeData(){ localStorage.setItem('PassKey','ja12ertplo'); divDisplay.textContent = 'Succesfully Stored'; } </script> </body> </html>
आउटपुट
‘स्टोर कुंजी’ clicking क्लिक करने के बाद बटन -
‘डिलीट की’ पर क्लिक करने के बाद बटन -