前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
圈层
工具
发布
首页
学习
活动
专区
圈层
工具
社区首页 >专栏 >js把HTML转成对象,将js对象转换为html「建议收藏」

js把HTML转成对象,将js对象转换为html「建议收藏」

作者头像
全栈程序员站长
发布2022-09-09 15:02:12
发布2022-09-09 15:02:12
5.1K0
举报

大家好,又见面了,我是你们的朋友全栈君。

好的,我有一些JS通过URL从JSON中提取数据。 我知道想要将每个对象(author_name,rating,author_url)转换为js ID,所以我可以在html中调用该ID。将js对象转换为html

例如

这是我的JS代码到目前为止

function initMap() {

var service = new google.maps.places.PlacesService(map);

service.getDetails({

placeId: ‘123’

}, function(place, status) {

if (status === google.maps.places.PlacesServiceStatus.OK) {

for(var i=0; i <= place.reviews.length; i++) {

console.log(place.reviews[i]);

alert(place.reviews[i].author_name);

alert(place.reviews[i].rating);

alert(place.reviews[i].author_url);

alert(place.reviews[i].text);

alert(place.reviews[i].relative_time_description);

alert(place.reviews[i].profile_photo_url);

}

}

});

}

是什么让这些成HTML,所以我可以样式和页面各处使用的最佳方法?

+0

创建具有所需内容和’的append()的’li’元素’它给你的’ul’ –

+0

尼斯信息,由于生病尝试。喜欢 ? (place.reviews [i] .author_name)append(li)? –

+0

eval,innerHtml,http://stackoverflow.com/questions/11351135/create-ul-and-li-elements-in-javascript –

发布者:全栈程序员栈长,转载请注明出处:https://javaforall.cn/160696.html原文链接:https://javaforall.cn

本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档