<header>
<h2 class="title">HTMLCollection: item() method</h2>
<p class="description">Повертає елемент з колекції HTMLCollection за заданим індексом.</p>
</header>
<main>
<div class="result">
<ul id="list"></ul>
<button id="add-item">Додати елемент</button>
<button id="remove-item">Видалити елемент</button>
<p>Індекс елемента для видалення: <input type="number" id="index" value="0" min="0"></p>
</div>
</main>
body {
font-size: 16px;
line-height: 1.5;
font-family: monospace;
}
header {
background-color: #f1f1f1;
margin-bottom: 25px;
padding: 15px;
box-shadow: 0px 0px 3px 0px rgba(118, 118, 118, 1);
box-shadow: 0px 0px 3px 0px rgba(118, 118, 118, 1);
box-shadow: 0px 0px 3px 0px rgba(118, 118, 118, 1);
}
header h2.title {
padding-bottom: 15px;
border-bottom: 1px solid #999;
}
header p.description {
font-style: italic;
color: #222;
}
.result {
background-color: #f8f8f8;
padding: 15px;
box-shadow: 0px 0px 3px 0px rgba(118, 118, 118, 1);
box-shadow: 0px 0px 3px 0px rgba(118, 118, 118, 1);
box-shadow: 0px 0px 3px 0px rgba(118, 118, 118, 1);
}
const list = document.getElementById('list');
const addButton = document.getElementById('add-item');
const removeButton = document.getElementById('remove-item');
const indexInput = document.getElementById('index');
let items = [];
function renderList() {
list.innerHTML = '';
items.forEach(item => {
const li = document.createElement('li');
li.textContent = item;
list.appendChild(li);
});
}
function addItem() {
items.push(`Елемент ${items.length + 1}`);
renderList();
}
function removeItem() {
const index = parseInt(indexInput.value, 10);
if (index >= 0 && index < items.length) {
const itemToRemove = items[index];
const confirmRemoval = confirm(`Ви дійсно хочете видалити елемент "${itemToRemove}"?`);
if (confirmRemoval) {
items.splice(index, 1);
renderList();
}
} else {
alert('Невірний індекс елемента!');
}
}
addButton.addEventListener('click', addItem);
removeButton.addEventListener('click', removeItem);
renderList();
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.