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