如何从附加照片上的类(iFrame)获取所有ID?

时间:2018-02-24 17:35:30

标签: javascript html

enter image description here enter image description here

也许我们可以使用var everyChild = document.querySelectorAll( XXX

1 个答案:

答案 0 :(得分:0)

const elements = document.querySelector('.photos_choose_rows').querySelectorAll('div > a')
const ids = Array.from(elements).map(el=> el.id);