├── f.js ├── index.html └── style.css /f.js: -------------------------------------------------------------------------------- 1 | const accor=document.querySelectorAll(".accordion-item-header"); 2 | accor.forEach(accor =>{ 3 | accor.addEventListener("click",event =>{ 4 | accor.classList.toggle("active"); 5 | const accorbody=accor.nextElementSibling; 6 | if(accor.classList.contains("active")){ 7 | accorbody.style.maxHeight=accorbody.scrollHeight + "px"; 8 | } 9 | else{ 10 | accorbody.style.maxHeight=0; 11 | } 12 | }); 13 | }); 14 | 15 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 |