/
andmagaz
/
easy_shop
Обзор
Документация
Войти
/
andmagaz
/
easy_shop
Код
Запросы
0
Задачи
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
script.js
17 строк
658 B
andmagaz
Создан script.js - в данном проекте на самый важный файл.
16 сен 2024, 21:12
16 сен 2024, 21:12
9542f57
Код
Авторство
О чём код?
const searchInput = document.getElementById('search'); searchInput.addEventListener('input', function() { const searchTerm = this.value.toLowerCase(); const products = document.querySelectorAll('.product'); products.forEach(product => { const productName = product.querySelector('h3').textContent.toLowerCase(); const productDescription = product.querySelector('p').textContent.toLowerCase(); if (productName.includes(searchTerm) || productDescription.includes(searchTerm)) { product.style.display = 'block'; } else { product.style.display = 'none'; } }); });