Skip to content

Instantly share code, notes, and snippets.

@ByYogi
Created October 14, 2024 12:19
Show Gist options
  • Save ByYogi/ee6eb744f7d8d957a6736723e86df5bd to your computer and use it in GitHub Desktop.
Save ByYogi/ee6eb744f7d8d957a6736723e86df5bd to your computer and use it in GitHub Desktop.
浏览器隐藏所有图片
//放控浏览器制台把图片全都隐藏,适合摸鱼
const imgArr = document.querySelectorAll('img')
imgArr.forEach(item=>{
item.style.display = 'none'
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment