Created
October 14, 2024 12:19
-
-
Save ByYogi/ee6eb744f7d8d957a6736723e86df5bd to your computer and use it in GitHub Desktop.
浏览器隐藏所有图片
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//放控浏览器制台把图片全都隐藏,适合摸鱼 | |
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