我需要留下一个可憎的文本区,即使该页重新上载,但只是没有工作。
我试图利用当地储存储存储存,储存位于一个阵列内的文字区高度和宽度,当该页重载时,文本区的规模就变成了储存的。
let initialSize = [textarea.clientHeight, textarea.clientWidth];
localStorage.setItem("storedSize", initialSize);
const storedSize = localStorage.getItem("storedSize");
if (storedSize) {
initialSize = storedSize;
}
but it just doesn t work because storing an array in local storage just isn t possible and i dont know why.