嘿,伙计们再次在 JavaScript 上做这个教程。我注意到,当我单击按钮时,在输入新项目后看不到任何文本。你们有谁知道为什么。边框在我的 CSS 中,所以我知道它正在输入,无论如何这是我的代码。
<!doctype html>
<html>
<head>
<title>To do list with html and javascript</title>
<style>
ul { list-style: none; padding: 0; margin: 0; width: 400px;}
li { border: 4px solid #ccc; background: #eee; padding: 10px 15px; color: #000; }
</style>
</head>
<body>
<h1>To Do List</h1>
<p><button id="btnAdd">click here!</button></p>
<ul id="todolist">
</ul>
</ul>
<script src="todo.js"></script>
</body>
</html>
和
function addNewItem(list, itemText){
var listItem = document.createElement("li");
listItem.innerText = "itemText";
list.appendChild(listItem);
}
var btnNew= document.getElementById("btnAdd");
btnNew.onclick = function() {
var itemText = prompt("what is your task?")
addNewItem(document.getElementById("todolist"), itemText);
};