gpt4 book ai didi

javascript - 如何使用 javascript 在 元素中显示图像?

转载 作者:行者123 更新时间:2023-12-02 23:06:30 24 4
gpt4 key购买 nike

我有一个数组:

[{
"img_ID": 1,
"ci_ID": 1,
"ciCode": "CI_00001ID",
"Title": "my_images_01",
"Image": "C:\\Users\\SMG48\\Downloads\\Images\\wp2448691-jihyo-twice-wallpapers.jpg"
}]

有没有办法显示 Image<img> 中的数组上使用 JavaScript 标记?

最佳答案

在获取数组的函数内部:

function displayImg(array) {
var img;
for (var i = 0; i < array.length; i++) {
img = document.createElement('img');
img.source(array[i]['Image']);
document.appendChild(img); // if you want just to append to parent
}
}

关于javascript - 如何使用 javascript 在 <img> 元素中显示图像?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57569855/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com