HTML DOM स्टोरेज सेटआइटम () विधि का उपयोग किसी दिए गए कुंजी नाम को पास करके स्टोरेज ऑब्जेक्ट आइटम को हटाने के लिए किया जाता है।
सिंटैक्स
स्टोरेज रिमूवल () मेथड का सिंटैक्स निम्नलिखित है -
localStorage.removeItem(keyname,value);
या
sessionStorage.removeItem(keyname,value );
यहाँ, keyname प्रकार string का है और value प्राप्त करने के लिए उपयोग किए जाने वाले key name का प्रतिनिधित्व करता है। दूसरा पैरामीटर मान नए मान का प्रतिनिधित्व करता है जो पुराने मान को बदल देगा।
उदाहरण
आइए हम स्टोरेज सेटइटम () विधि के उदाहरण को देखें -
<!DOCTYPE html> <html> <body> <h1 style="text-align:center">Storage setItem() method example</h1> <p>Create the localstorage item by clicking the below button</p> <button onclick="itemCreate()">CREATE</button> <p>Display the localstorage item by clicking the below button</p> <button onclick="itemShow()">DISPLAY</button> <p id="Sample"></p> <script> function itemCreate() { localStorage.setItem("TEXT1","HELLO WORLD"); document.getElementById("Sample").innerHTML ="The key-value pair has been created"; } function itemShow() { var s = localStorage.getItem("TEXT1"); document.getElementById("Sample").innerHTML ="The 'TEXT1' key value is "+s; } </script> </body> </html>
आउटपुट
यह निम्नलिखित आउटपुट देगा -
क्रिएट बटन पर क्लिक करने पर -
DISPLAY बटन पर क्लिक करने पर -