我写了一个页面,可以向数组中添加数据,添加数据后,刷新后刚刚添加的数据就没了。我的问题是: 怎样才能在数组中添加数据后,下次打开时不被刷新掉。
3条回答 默认 最新
- CSDN专家-天际的海浪 2022-04-05 00:35关注
前端html页面可以把数据保存在localStorage对象中(localStorage对象中的数据在关闭网页后不会消失)。
重新打开页面后再从localStorage对象中取得数据
你题目的解答代码如下:<!doctype html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" /> <title> 页面名称 </title> </head> <body> <input type="text" id="text" value="xx" /> <input type="button" value="添加到数组" onclick="add();" /> <div id="info"></div> <script type="text/javascript"> var arr = []; if (localStorage.myArray) { arr = JSON.parse(localStorage.myArray); } document.getElementById("info").innerText = JSON.stringify(arr); function add() { arr.push(document.getElementById("text").value); document.getElementById("info").innerText = JSON.stringify(arr); } window.onbeforeunload = function () { localStorage.myArray = JSON.stringify(arr); } </script> </body> </html>
如有帮助,请点击我的回答下方的【采纳该答案】按钮帮忙采纳下,谢谢!
本回答被题主选为最佳回答 , 对您是否有帮助呢?解决 1无用
悬赏问题
- ¥15 乌班图ip地址配置及远程SSH
- ¥15 怎么让点阵屏显示静态爱心,用keiluVision5写出让点阵屏显示静态爱心的代码,越快越好
- ¥15 PSPICE制作一个加法器
- ¥15 javaweb项目无法正常跳转
- ¥15 VMBox虚拟机无法访问
- ¥15 skd显示找不到头文件
- ¥15 机器视觉中图片中长度与真实长度的关系
- ¥15 fastreport table 怎么只让每页的最下面和最顶部有横线
- ¥15 java 的protected权限 ,问题在注释里
- ¥15 这个是哪里有问题啊?