“местное хранение” Ответ

Местное хранение

<script>
  //an immediately invoked function that checks to see if the text is in local storage already
  (function(){
    //if the text is in local storage, set the html
    if (localStorage.currentTotal){
    console.log(localStorage.currentTotal);
    document.getElementById('class').innerHTML = localStorage.getItem("currentTotal");
  }
    })();
  //function that gets called for an onclick event
  function myFunction() {
// Store in local storage
localStorage.setItem("currentTotal", "Class current balance total");
//set the inner html to what is in local storage
document.getElementById("class").innerHTML = localStorage.getItem("currentTotal");

}
</script>
Charming Constrictor

местное хранение

localStorage.setItem('localStorage', 1);
Light Lion

местное хранение

var answer = localStorage.key(1);
// this statement will retrieve the value of the second item in localStorage.
Tired Tamarin

местное хранение

<form action="2.html" onsubmit="callme()">
    <p>Enter your name</p>
    <input id="tbName" type="text">
    <button type="submit" value="submit">Submit</button>
</form>
<script>
    function callme(){
        var name = document.getElementById('tbName').value;
        sessionStorage.setItem('userName', name);
    }
</script>
Pocho

местное хранение

window.localStorage.setItem("grade","One");
//in this case, the `grade` is the key while `One` is the value.
Tired Tamarin

местное хранение

window.localStorage.getItem("key");
Furkan Yücel

Ответы похожие на “местное хранение”

Вопросы похожие на “местное хранение”

Больше похожих ответов на “местное хранение” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования