List of All Background Images in DOM

前端 未结 7 1117
旧巷少年郎
旧巷少年郎 2020-12-29 12:00

What\'s the best way to find all of the background images on a given page using javascript?

The ideal end result would be an array of all of the url\'s.

7条回答
  •  轮回少年
    2020-12-29 12:30

    get collection elements which have inline background styles

    document.querySelectorAll('[style*="background"]')
    

提交回复
热议问题