js json中如何删除指定元素
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js json中如何删除指定元素相关的知识,希望对你有一定的参考价值。
参考技术A 删除json下指定的元素var obj = ‘id’:1, ‘name’:2;
delete obj.id;
delete obj[id];
console.log(obj); // ‘name’:2
删除数组中指定元素
var objArray = [‘1’,’2’,’3’,’4’];
objArray.remove(‘1’);
console.log(objArray); // [‘2’,’3’,’4’]
/*定义js数组删除元素/
Array.prototype.remove = function(val)
var index = this.indexOf(val);
if (index > -1)
this.splice(index, 1);
;
以上是关于js json中如何删除指定元素的主要内容,如果未能解决你的问题,请参考以下文章