如果我有JSON对象,请说:
var myObj = {'test' : {'key1' : 'value', 'key2': 'value'}}
我可以删除“ key1”使其变为:
{'test' : {'key2': 'value'}}
简单:
delete myObj.test.key1;