gpt4 book ai didi

javascript - 使用 JavaScript 编辑和更新 HTML 列表

转载 作者:可可西里 更新时间:2023-11-01 13:46:44 24 4
gpt4 key购买 nike

我正在尝试创建一个我可以编辑/更新的列表。我需要能够将列表信息存储在某种变量中并在 HTML 页面上显示信息。

我的尝试在下面的jsbin中。

JSBIN

https://jsbin.com/luxobineze/edit?html,js,console,output

因此,使用该代码,我想:

  • 通过填写表格并点击“添加姓名”来添加姓名
  • 单击[编辑],将使用要编辑的名称填写表格
  • 单击“更新”以更新全局变量“名称”(如果我可以这样做,那么我也应该能够更新 HTML 的“名称列表”)

我不确定在 updateName 函数中做什么,因为我不确定如何将相关参数传递给它以更新正确的列表项。我是否需要使用更多全局变量来跟踪正在编辑的列表项?或者是否有更好、更标准的编码方式?

jsbin中的代码在这里:

HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>JS Bin</title>
</head>

<body>
Name: <input type="text" id="name-input"><br>
<button id="add-name" class="button">Add Name</button>
<button id="update" class="button">Update</button>

<div id="list">List of Names</div>
</body>
</html>

JavaScript

// global variable storing the list of names
var names = [];

function addName() {
var name = document.getElementById("name-input").value;
var list = document.getElementById("list");

if(name) {
names.push("name");

var wrapper = document.createElement("div")
wrapper.setAttribute("id", name)

var div_name = document.createElement("div");
div_name.appendChild(document.createTextNode(name))

var div_edit = document.createElement("div")
div_edit.appendChild(document.createTextNode("[edit]"))
div_edit.addEventListener("click", editName)

wrapper.appendChild(div_name)
wrapper.appendChild(div_edit)

list.appendChild(wrapper)
}
}

function editName() {
// Fill the input box with the name that you want to edit
var name = this.parentElement.getAttribute("id")
document.getElementById("name-input").value = name;
}

function updateName() {
var new_name = document.getElementById("name-input").value
// How do I update the global variable "names"?

}

document.getElementById("add-name").addEventListener("click", addName)
document.getElementById("update").addEventListener("click", updateName)

编辑

我最终使用一些全局变量来跟踪当前选择的项目:https://jsbin.com/zupawesifu/1/edit?html,js,console,output

最佳答案

听起来您正在做的是构建最基本的应用程序,一个 CRUD 应用程序。 (创建、读取、更新、删除)

将您的值存储在局部变量中并不是执行此操作的最理想方式,除非这是您想要的功能。

你问“有没有更标准的方法”。一种更常见的方法是将您的值存储在数据库中,或者,在更简单的情况下,您可以将这些值存储在本地 .JSON 文件中。这将允许您随时使用您的应用程序、关闭应用程序、刷新或进行任何其他操作,而不会丢失您存储或编辑的值。

我不会在这里为您编写完整的 CRUD 应用程序,但是有许多教程和模板可供您学习使用。这是非常基本的。

希望对您有所帮助!

http://mrbool.com/creating-a-crud-form-with-html5-local-storage-and-json/26719

关于javascript - 使用 JavaScript 编辑和更新 HTML 列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41310287/

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