img
我正在尝试使用 zen 编码从文件名列表中创建大量标签,以src
用我的文件名列表填充属性。
这是我拥有的以及我想用它做什么:
filenameA.jpg
someotherone.jpg
anotherimage.jpg
sample.jpg
Zen编码结果:
<img src="images/filenameA.jpg" />
<img src="images/someotherone.jpg" />
<img src="images/anotherimage.jpg" />
<img src="images/sample.jpg" />
我试过用缩写来包装列表:img[src=]
但我不知道正确的方法。
谢谢您的帮助 :)