Ваша функция вызывается только при изменении textarea
, вам также нужно вызывать ее при загрузке страницы.Для этого вам нужно прослушать событие DOMContentLoaded .
<!DOCTYPE html>
<html>
<body>
<textarea id="txt"></textarea>
<div id="err"></div>
<script>
var textarea = document.getElementById("txt");
textarea.addEventListener('input', writeLocalStorage);
function writeLocalStorage() {
if (typeof(Storage) !== "undefined") {
localStorage.setItem("text", textarea.value);
} else {
document.getElementById("err").innerHTML = "Localstorage not supported";
}
}
function readLocalStorage() {
if (typeof(Storage) !== "undefined") {
textarea.value = localStorage.getItem("text");
} else {
document.getElementById("err").innerHTML = "Localstorage not supported";
}
}
// `DOMContentLoaded` may fire before your script has a chance to run, so check before adding a listener
if (document.readyState === "loading") {
document.addEventListener("DOMContentLoaded", readLocalStorage);
} else { // `DOMContentLoaded` already fired
readLocalStorage();
}
</script>
</body>
</html>