假设请求www.baidu.com,得到一个json数据,如下:
[HTML] 纯文本查看 复制代码 {
"code": 1,
"msg": "解析成功",
"name": "#卧槽无情 为什么别人模仿我都火了,而我原创的不火呢,你们说说为啥",
"url": "http://v3-dy-y.ixigua.com/c9d7810003942dd48f47f8624fd760e7/5e534ea3/video/tos/cn/tos-cn-ve-15/9b1b3eb658d347de9c9fb3542b0178e9/?a=1128&br=3663&bt=1221&cr=0&cs=0&dr=0&ds=6&er=&l=202002241118350100120592311A064DF9&lr=&qs=0&rc=am9kdWd5O2tlczMzNWkzM0ApNDg4Nmk4ZWU8NzU6NGg3M2c0X3Mxci8wZTVfLS1jLS9zc2IuNi5jYy80Xy9iXmBgY2I6Yw%3D%3D&vl=&vr=",
"img": "http://p3-dy.byteimg.com/large/tos-cn-p-0015/b59ce6af82f94e17be911ffb6e07e2e1_1582348495.jpeg?from=2563711402_large",
"img_run": "https://p9-dy.byteimg.com/obj/tos-cn-p-0015/dd2b4ea9d5af4b3a8076d4e18d04c261_1582348495?from=2563711402_large",
"zan": "1484797",
"pl": "34603"
}
以下是我的网页
[HTML] 纯文本查看 复制代码 <input type="text" placeholder="请输入链接" />
<input type="button" value="获取" /><br>
<input type="text" placeholder="这是视频标题" />
<img src="https://www.baidu.com/img/baidu_jgylogo3.gif" alt="" /><br>
<iframe src="https://www.baidu.com/"></iframe>
我想将上面的json数据对应显示在我的网页中
json: name显示在网页的<input type="text" placeholder="这是视频标题" />
img显示在网页img src中
json 中url显示在网页的iframe中
百度了好多,都不是我想要的,所以请教下各位大神
|