#javascript #html #css
Есть рейтинг на сайте
Ответы
Ответ 1
Например вот так: var button = document.getElementById('showAll'); table = document.getElementById('myTable'); button.addEventListener('click', function() { // Проверяем на наличие класса и вызываем соответсвуюущую функцию table.classList.contains('opened') ? hideRows() : showRows(); }); function showRows() { table.classList.add('opened'); button.innerHTML = 'Скрыть'; } function hideRows() { table.classList.remove('opened'); button.innerHTML = 'Показать всё'; } .tablesorter tbody tr { display: none; } .tablesorter.opened tbody tr { display: table-row; } .tablesorter tbody tr:nth-child(1), .tablesorter tbody tr:nth-child(2), .tablesorter tbody tr:nth-child(3) { display: table-row; }
Комментариев нет:
Отправить комментарий