Skip to content

Latest commit

 

History

History
10 lines (7 loc) · 319 Bytes

隐藏所有指定的元素.md

File metadata and controls

10 lines (7 loc) · 319 Bytes

隐藏所有指定的元素

使用扩展运算符(...)和 Array.prototype.forEach()display: none 应用于指定的每个元素。

const hide = (...el) => [...el].forEach((e) => (e.style.display = 'none'))

// 隐藏页面上的所有 <img> 元素
hide(...document.querySelectorAll('img'))