カウンターの結果を保存し、別のページに情報を返したいと思っています。
これまでのところ、私はこれを持っています..
<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")
メソッド。
ちょっと無知です、どんな助けでも素晴らしいでしょう!ありがとう!