|
Метки: очистка ручная отмена |
Строка 1: |
Строка 1: |
| document.addEventListener('DOMContentLoaded', function() {
| |
| const rows = document.querySelectorAll('.standard-link tr');
| |
|
| |
|
| rows.forEach(row => {
| |
| const link = row.querySelector('td:nth-child(2) a');
| |
| const image = row.querySelector('td:nth-child(1) img');
| |
|
| |
| if (link && image) {
| |
| // Добавляем обработчики событий для ссылки
| |
| link.addEventListener('mouseover', function() {
| |
| link.classList.add('highlight');
| |
| image.classList.add('highlight');
| |
| });
| |
|
| |
| link.addEventListener('mouseout', function() {
| |
| link.classList.remove('highlight');
| |
| image.classList.remove('highlight');
| |
| });
| |
|
| |
| // Добавляем обработчики событий для изображения
| |
| image.addEventListener('mouseover', function() {
| |
| link.classList.add('highlight');
| |
| image.classList.add('highlight');
| |
| });
| |
|
| |
| image.addEventListener('mouseout', function() {
| |
| link.classList.remove('highlight');
| |
| image.classList.remove('highlight');
| |
| });
| |
| }
| |
| });
| |
| });
| |