2
我想存儲計數器的結果並將信息返回到另一頁上。html5 localstorage存儲和訪問
到目前爲止,我這個..
<script>
function clickCounter() {
document.getElementById("p4").style.display="none";
if(typeof(Storage)!=="undefined") {
if (localStorage.clickcount) {
localStorage.clickcount=Number(localStorage.clickcount)+1;}
else {
localStorage.clickcount=1;}
document.getElementById("result").innerHTML="You have had " + localStorage.clickcount + " drink(s)";}
else {
document.getElementById("result").innerHTML="Sorry, your browser does not support web storage.";}
}
</script>
所以櫃檯的工作,當我按下按鈕,它增加按1。
我不知道我在哪裏堅持在.setItem("result")
;然後是.getItem("result")
方法。
有點無能,任何幫助都會很棒!謝謝!