jquery 知道数组中某一元素的部分值,怎样从数组中删除此元素
发布网友
发布时间:2022-05-15 04:10
我来回答
共1个回答
热心网友
时间:2022-05-15 05:39
//声明一个数组
var whereJsonObj = [];
//声明一个对象
var term = new Object();
term = new Object();
term.name = "search";
term.value = "123"
//给数组添加一个对象
whereJsonObj.push(term);
//删除前
console.log(whereJsonObj);
//删除这个对象
whereJsonObj = remove(whereJsonObj,"name","search");
//删除后
console.log(whereJsonObj );
//删除数组的函数
function remove(arrPerson,objPropery,objValue){
return $.grep(arrPerson, function(cur,i){
return cur[objPropery]!=objValue;
});
}