gpt4 book ai didi

javascript - 将新行添加到 localStorage 变量中

转载 作者:行者123 更新时间:2023-11-30 17:01:22 24 4
gpt4 key购买 nike

我正在尝试将新行添加到本地存储变量中,但我不确定该怎么做。我有这个功能:

function showHistory()
{
if (!localStorage.history)
{
localStorage.history = "";
}
localStorage.history = localStorage.history +"something"+"XX";
document.getElementById('history').textContent = localStorage.history;
}

但是如果我用“\n”或“
”或类似的东西替换 XX 如果我使用这个函数仍然会得到像

"something something something"

代替

something
something
something

最佳答案

使用 innerHTML而不是 textContent为我解决了这个问题(作为新行,使用 <br> ):

localStorage.history = localStorage.history +"something"+"<br>";
document.getElementById('history').innerHTML = localStorage.history;

关于javascript - 将新行添加到 localStorage 变量中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28783544/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com