gpt4 book ai didi

javascript - 如何使用事件监听器向对象数组添加新元素并将其显示在 html 页面上

转载 作者:行者123 更新时间:2023-11-28 00:33:01 27 4
gpt4 key购买 nike

我试图制作一个待办事项应用程序,然后我想使用表单事件监听器添加新的待办事项,但是,当我完成了应用程序仅将书面文本添加到 object-array 中的代码,实际上并没有将其添加到 html 页面中的待办事项列表中。

为了简化这个问题,我将在下面提供一个显示数组、设置代码和 html 的小代码,但是如果您想查看整个应用程序代码,请随时查看这个 github 的存储库: https://github.com/salahmak/Todo-application

您还可以通过此 ngrok 链接查看应用程序的实时版本(我会保持它的实时状态,直到我解决问题):http://7eb95c9a.ngrok.io

代码:

// The array
const todos = [{
text: 'wake up',
completed: true
}, {
text: 'get some food',
completed: true
}, {
text: 'play csgo',
completed: false
}, {
text: 'play minecraft',
completed: true
}, {
text: 'learn javascript',
completed: false
}];


//creating p elements and assigning their text content to each "text" property of the "todos" array

todos.forEach(function(todo) {
let p = document.createElement('p');
p.textContent = todo.text;
document.querySelector('#todo').appendChild(p);
})
<h1>Todos</h1>

<form id="form">
Add a new todo
<input type="text" placeholder="Type your first name" name="firstName">
<button>Submit</button>
</form>

最佳答案

document.querySelector('#todo').appendChild(p);您正在附加到一个不存在的 #todo元素。投入 <div id="todo"></div>它将起作用。

工作:

// The array
const todos = [{
text: 'wake up',
completed: true
}, {
text: 'get some food',
completed: true
}, {
text: 'play csgo',
completed: false
}, {
text: 'play minecraft',
completed: true
}, {
text: 'learn javascript',
completed: false
}];


//creating p elements and assigning their text content to each "text" property of the "todos" array

todos.forEach(function(todo){
let p = document.createElement('p');
p.textContent = todo.text;
document.querySelector('#todo').appendChild(p);
})
<body>
<h1>Todos</h1>

<form id="form">
Add a new todo
<input type="text" placeholder="Type your first name" name="firstName">
<button>Submit</button>
</form>

<div id="todo"></div>

<script src="todo-app.js"></script>
</body>

关于javascript - 如何使用事件监听器向对象数组添加新元素并将其显示在 html 页面上,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57812550/

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