我正在尝试使用localStorage
创建一个简单的程序。我创建了一个按钮来重置localStorage
中的所有数据。不幸的是,它不起作用我不知道为什么。
这是我的代码:
<script>
var slot = localStorage.getItem("slot");
if (slot == null) {
slot = 10;
}
document.getElementById("slot").innerText = slot;
function reduceSlot() {
if (slot >= 1) {
slot--;
document.getElementById("slot").innerText = slot;
localStorage.setItem("slot", slot);
}
else {
document.getElementById('slot').innerText = "FULL";
document.getElementById("button1").style.display = "none";
}
}
document.getElementById("button1").onclick = reduceSlot;
function clearLocalStorage(){
localStorage.clear();
}
</script>
<body>
<p id="slot">10</p>
<a href="javascript:reduceSlot(1)" id="button1">Deduct</a>
<button onclick="clearLocalStorage()">Clear All</button>
</body>
我在网站上关注了这段代码,但它没有运行。我浏览的大多数网站都令人困惑。我需要帮助。
答案 0 :(得分:1)
<button onclick="window.localStorage.clear();">Clear All</button>
这应该有用。