一行代码即可搞定,绕了n个圈才找到
var jsonString ='{"jsonSupportBean":{"errorMessage":"Duplicate label group name of 'Kevin6666'.","message":null,"result":null,"success":false}}';
var json = $.parseJSON(jsonString );
alert(json.jsonSupportBean.success);
本文介绍了一种使用jQuery解析JSON字符串的方法,并通过实例展示了如何获取JSON对象中的特定属性值。
一行代码即可搞定,绕了n个圈才找到
var jsonString ='{"jsonSupportBean":{"errorMessage":"Duplicate label group name of 'Kevin6666'.","message":null,"result":null,"success":false}}';
var json = $.parseJSON(jsonString );
alert(json.jsonSupportBean.success);

被折叠的 条评论
为什么被折叠?