show - 显示所有指定的元素

优质
小牛编辑
130浏览
2023-12-01

显示所有指定的元素。

使用展开运算符 (...) 和 Array.forEach() 来清除每个指定元素的 display 属性。

const show = (...el) => [...el].forEach(e => (e.style.display = ''));
show(...document.querySelectorAll('img')); // Shows all <img> elements on the page