我有一个src值数组,如[path1,path2,path3]和一个与arr值相同的数组长度的html集合。因此,我想传递每个值来设置html元素的src。我该怎么办?我尝试了 forEach,for Of,map,但它仍然是同一路径中的所有元素,或者只是设置了一个(第一个元素)。
//My code now
<img alt='first-in-collection'>
<img alt='second-in-collection'>
<img alt='third-in-collection'>
//The variable
let arr = ['path1', 'path2', 'path3']
//Expected result
<img src='path1' alt='first-in-collection'>
<img src='path2' alt='second-in-collection'>
<img src='path3' alt='third-in-collection'>
12345678_0001
相关分类