30秒学会 JavaScript 片段 · 2018年11月24日

30秒学会 JavaScript 片段 – show

Shows all the elements specified.

Use the spread operator (...) and Array.prototype.forEach() to clear the display property for each element specified.

代码片段

const show = (...el) => [...el].forEach(e => (e.style.display = ''));

使用样例

show(...document.querySelectorAll('img')); // Shows all <img> elements on the page