gpt4 book ai didi

javascript - 如何将表单数据存储在本地存储中?

转载 作者:行者123 更新时间:2023-12-02 23:39:07 27 4
gpt4 key购买 nike

我正在实现一个表单提交过程,但我没有使用任何数据库(后端)。我想将表单数据存储在客户端或浏览器中。所以我打算使用本地存储。

<html>

<head>
<title>Bootstrap Example</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.0/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/js/bootstrap.min.js"></script>

</head>

<body>
<div class="container">
<div class=" row ">
<div class="col-md-6">
<form method="post">
<div class="form-group">
<label for="usr">Name</label>
<input type="text" class="form-control" id="usr" placeholder="Enter your name" required>
</div>
<div class="form-group">
<label for="phone">Phone</label>
<input type="text" class="form-control" id="phone" placeholder="Enter your phone" required>
</div>
<div class="form-group">
<label for="email">Email</label>
<input type="email" class="form-control" id="email" placeholder="Enter your email" required>
</div>
<div class="form-group">
<label for="pwd">Password</label>
<input type="password" class="form-control" id="pwd" required>
</div>
<button type="submit " class="btn btn-success" formaction="../BootStrapTemplate/detail.html">Submit</button>

</form>
</div>
</div>

</div>
</body>

</html>
我想在单击提交按钮后存储数据。并且它还会导航到另一个页面(detail.html页面),在detail.html中我将显示所有信息。

我必须在详细页面中显示一些附加信息,ID 和时间。

enter image description here

我想根据ID存储数据(意味着第一次保存数据id值应该是1,第二次保存数据值应该是2)

我将第一次使用本地存储。所以我对本地存储不太了解。每个记录的 ID 应该是唯一的。据我说这是一个更好的主意。如果有人有在客户端存储数据的好主意,请告诉我。

我看到了一个链接,但我无法对多个输入字段执行此操作,而且我还想要键、值 JSON 的形式。

最佳答案

有一些插件可用,但如果您不想使用它们。 Plugin-to-Save-Form-Fields-Values-To-localStorage

你可以使用这个。

window.localStorage - 存储没有过期日期的数据

window.sessionStorage - 存储一个 session 的数据(关闭浏览器选项卡时数据会丢失)*

注意:- 在使用网络存储之前,请检查浏览器对 localStorage 和 sessionStorage 的支持

存储

localStorage.setItem("lastname", "Smith");

检索

document.getElementById("result").innerHTML = localStorage.getItem("lastname");

关于javascript - 如何将表单数据存储在本地存储中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56156486/

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