删除Json中的不需要的键值

var json = {'A': 1,  ,'B': 2, 'ccc': 333}

delete json['ccc'];

原文地址:https://www.cnblogs.com/yourstars/p/6020717.html