<header>
<h2 class="title">NodeList: item() method</h2>
<p class="description">Повертає вузол DOM за зазначеним індексом у NodeList.</p>
</header>
<main>
<div class="result">
<h3>Список посилань</h3>
<ul id="link-list"></ul>
<div>
<label for="link-index">Індекс посилання:</label>
<input type="number" id="link-index" min="0" value="0">
<button id="get-link">Отримати посилання</button>
</div>
<p id="link-output"></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 linkList = document.querySelector('#link-list');
const linkIndex = document.querySelector('#link-index');
const getLinkButton = document.querySelector('#get-link');
const linkOutput = document.querySelector('#link-output');
// Функція для створення нового елемента списку посилань
function createLinkItem(linkText, linkHref) {
const linkItem = document.createElement('li');
const linkAnchor = document.createElement('a');
linkAnchor.href = linkHref;
linkAnchor.textContent = linkText;
linkItem.appendChild(linkAnchor);
return linkItem;
}
// Додаємо кілька посилань до списку
linkList.appendChild(createLinkItem('Google', 'https://www.google.com'));
linkList.appendChild(createLinkItem('Facebook', 'https://www.facebook.com'));
linkList.appendChild(createLinkItem('Twitter', 'https://www.twitter.com'));
// Функція для отримання посилання за індексом
function getLinkByIndex() {
const links = document.querySelectorAll('#link-list a');
const index = parseInt(linkIndex.value);
const link = links.item(index);
if (link) {
linkOutput.textContent = `Посилання з індексом ${index}: ${link.href}`;
} else {
linkOutput.textContent = `Посилання з індексом ${index} не знайдено.`;
}
}
// Додаємо обробник події натискання для кнопки "Отримати посилання"
getLinkButton.addEventListener('click', getLinkByIndex);
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.