-
Notifications
You must be signed in to change notification settings - Fork 0
/
Task29.html
46 lines (37 loc) · 1.35 KB
/
Task29.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Список с добавлением</title>
<style>
/* Стили для стилизации списка */
#list-container {
margin: 20px;
}
</style>
</head>
<body>
<div id="list-container">
<h2>Мой список</h2>
<ul id="my-list">
<!-- Сюда будут добавляться пункты -->
</ul>
<input type="text" id="new-item" placeholder="Введите новый пункт">
<button onclick="addItem()">Добавить</button>
</div>
<script>
function addItem() {
// Получаем значение из поля ввода
var newItemText = document.getElementById("new-item").value;
// Создаем новый элемент списка
var newItem = document.createElement("li");
newItem.textContent = newItemText;
// Добавляем новый элемент в список
document.getElementById("my-list").appendChild(newItem);
// Очищаем поле ввода
document.getElementById("new-item").value = "";
}
</script>
</body>
</html>