gpt4 book ai didi

javascript - 如何在html中打印本地存储中数组中存储的值

转载 作者:行者123 更新时间:2023-12-02 17:14:56 24 4
gpt4 key购买 nike

我已将一些值以字符串形式存储在本地存储中的数组 oldItems 中。现在我想在 html 中的不同位置显示该组字符串。所以我需要的只是以不同的方式访问所有字符串。

var test2 = JSON.parse(localStorage.getItem("oldItems"));

我定义了一个数组 test2 并使用 id 进行打印

<tr> 
<td> 1 </td>
<td> <p id="test2[0]"></p> </td>
</tr>

但是接下来的事情不是打印数组中存储的值。代码有什么问题吗?请帮忙。提前致谢。

最佳答案

<p id="__here__"不能声明 JavaScript 语句(您拥有的test2[0])。他们进入 <script>元素。如果您想这样做,请使用:

var p = document.querySelector("__any__specific__selector__for__p");
p.id = test2[0];

关于javascript - 如何在html中打印本地存储中数组中存储的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24524464/

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