用jquery操纵json数据
这个问题在这里已经有了答案:
顾名思义, stringify
将JSON转换为一个字符串。 JSON是原生JavaScript,并基于您的示例数据:
[
{
"ID": 1127,
"title": "Paul Rand",
"content": "<p>Good ideas rarely come in bunches. The designer who voluntarily presents his client with a batch of layouts does so not out prolificacy, but out of uncertainty or fear. </p>n",
"link": "https://quotesondesign.com/paul-rand-7/"
}
]
你会得到一个对象数组(在方括号中)(在大括号中)。在这种情况下,它只是数组中的一个对象,所以你可以使用data[0]
访问数组中的第一个对象,然后获取其content
属性:
$('.message').html(data[0].content);
链接地址: http://www.djcxy.com/p/31731.html