P粉4810352322023-09-06 09:20:49
这些图标都在您的锚标记中,因此您在菜单中使用了两个图标。如果这些是图像,那么您应该使用“Alt”。 我们可以通过JS添加标签,但是不要强行在anchor中使用alt。 来源
const anchors = document.querySelectorAll('.mobile-controls a'); anchors.forEach(anchor => { anchor.setAttribute('alt', 'Alternative text'); });