gpt4 book ai didi

javascript - 是否可以在html文件中动态加载js文件中的图像?

转载 作者:太空宇宙 更新时间:2023-11-04 14:09:23 26 4
gpt4 key购买 nike

我有一个包含一些图像的 html 文件。但是现在我想将图像从我的 JavaScript 文件(代码如下所示)加载到我的 html 文件 div 类中,而不是总是将它输入到我的 div 类中。有什么办法可以用 JavaScript、JSON 或其他什么来实现这一点?

var swiperExhibitors = ['141726', '141747', '141786', '144994', '145002', '145070', '145072', '151550', '168999', '233192', '545600'];

var swiperImages = ['1437645467.1063_3_o.jpg', '1432890452.7057_3_o.jpg', '1538377347.3443_114_o.jpg', '1495453007.7039_3_o.jpg', '1433941431.3552_3_o.jpg', '1491818250.7553_3_o.jpg', '1364303014.8606_3_o.jpg', 'fa71eb9a8367a0ec85c7b6c05a05b6ef_01_07_o.jpg', '1474012701.9219_3_o.jpg', '1546596386.5453_145_o.jpg', '1554193616.0853_145_o.jpg'];

我想编写一个脚本来为我完成所有工作并在我的 html 文件中动态创建图像

最佳答案

这样就可以动态创建图像- reference

var swiperImages = ['1437645467.1063_3_o.jpg', '1432890452.7057_3_o.jpg', '1538377347.3443_114_o.jpg', '1495453007.7039_3_o.jpg', '1433941431.3552_3_o.jpg', '1491818250.7553_3_o.jpg', '1364303014.8606_3_o.jpg', 'fa71eb9a8367a0ec85c7b6c05a05b6ef_01_07_o.jpg', '1474012701.9219_3_o.jpg', '1546596386.5453_145_o.jpg', '1554193616.0853_145_o.jpg'];

function myFunction(src) {
var x = document.createElement("IMG");
x.setAttribute("src", src);
x.setAttribute("width", "304");
x.setAttribute("height", "228");
x.setAttribute("alt", "The Pulpit Rock");
document.body.appendChild(x);
}


swiperImages.forEach(el => {
myFunction(el)

})

关于javascript - 是否可以在html文件中动态加载js文件中的图像?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56275846/

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