我对Json很新,但我试图在html体内显示一个json文件。
我的json文件看起来像这样
{ items: [
{
"thumb":"http://link/link.jpg",
"title":"title of the link",
"link":"http://link.html",
"popup":"false"
},
{
"thumb":"http://link/link2.jpg",
"title":"title of the link2",
"link":"http://link2.html",
"popup":"false"
},
{
"thumb":"http://link/link3.jpg",
"title":"title of the link3",
"link":"http://link3.html",
"popup":"false"
}
]}
我希望将此内容显示在我的html正文文档中...任何建议?想法?
谢谢
答案 0 :(得分:1)
按字面意思回答你的问题:
<iframe width="800" height="400" src="your-file.json"></iframe>
我不确定你真的想要那个。