<img src="" alt="1223" src="hha"/> <img src=".."/>
假設有很多個類似上面這種結構的img標籤,但每個img標籤有多少個屬性都是未知的(即有的可能只有一個src屬性),如何獲得每個img標籤的所有屬性名(不是屬性值)?
https://developer.mozilla.org...
雷雷
使用 ES6 的物件展開:
[...document.querySelector('selector').attributes]
https://developer.mozilla.org...
雷雷
雷雷
使用 ES6 的物件展開: