搭建一个TodoList应用是一个很好的练习项目,可以帮助你熟悉JavaScript的基础知识和DOM操作。下面是一个简单的教程,帮助你完成这个项目:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TodoList App</title>
</head>
<body>
<h1>TodoList App</h1>
<input type="text" id="todoInput">
<button id="addTodoBtn">Add Todo</button>
<ul id="todoList"></ul>
<script src="app.js"></script>
</body>
</html>
const todoInput = document.getElementById('todoInput');
const addTodoBtn = document.getElementById('addTodoBtn');
const todoList = document.getElementById('todoList');
addTodoBtn.addEventListener('click', () => {
const todoText = todoInput.value;
if (todoText.trim() !== '') {
const todoItem = document.createElement('li');
todoItem.textContent = todoText;
todoList.appendChild(todoItem);
todoInput.value = '';
}
});
这是一个非常简单的TodoList应用,你可以根据自己的需求进行扩展和改进。你可以添加删除待办事项、标记已完成的待办事项等功能,来进一步完善这个项目。希望这个教程对你有所帮助,祝你顺利完成这个项目!