Post by Hamid Dahmardh
Frontend Developer در ESNAP
;سین تکس جی اس برای فیلتر کرن ایتم این ایده منه یه ایده جذاب برای وستان خوشحال میشم نظرتون رو بهم بگین function filterItem(e){ const items = document.querySelectorAll('li'); const text = e.target.value.toLowerCase(); items.forEach(item => { const newitem = item.firstChild.textContent.toLowerCase(); if(newitem.indexOf(text) !== -1) {; item.style.display = 'flex'; } else { item.style.display = 'none'; } }); };