gpt4 book ai didi

javascript - 如何使用js从json中提取图片并显示在html标签中

转载 作者:行者123 更新时间:2023-11-30 20:07:00 27 4
gpt4 key购买 nike

这是我的 json:

{ "type": "Feature", "properties": { **"pic": "/logo2.png",** "nombre": "T2V", "x": -4.45497, "y": 36.692029, "field_8": null, "field_9": null }, "geometry": { "type": "Point", "coordinates": [ -4.45497, 36.692029 ] } },

这是尝试在相对路径中提取图片但不起作用的代码部分:

var info = L.control();
info.onAdd = function (map) {
this._div = L.DomUtil.create('div', 'info');
this.update();
return this._div;
};
info.update = function (props) {
// console.log(props);
this._div.innerHTML = ''
+(props? '<b><center style="color:#838383; margin-top:10px;">'+props.nombre+'</center></b>': '')
+(props? '<br><b><center style="color:#838383">'+props.web+'</center></b>': '');
+(props? '<br><img src="'+props.pic+'"style="width:40px;height:40px;">': '');
this._div.innerHTML += '<br /><img src="link.png" style="background:rgba(254,198,41,0.8); margin-left:20px; margin-right:15px; margin-top:0px">';
};
info.addTo(map);

谁能帮我举个关于这个 Action 的例子?

最佳答案

好的,您可以为 img 元素创建一个变量,然后设置属性“src”以指向您的 json 对象的相对或绝对路径。

var image = document.createElement('img');
image.setAttribute('src', json.properties.pic);

然后将元素插入到你想要的容器元素中:

document.getElementById('img-container').appendChild(img);

关于javascript - 如何使用js从json中提取图片并显示在html标签中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52821913/

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