jquery 知道数组中某一元素的部分值,怎样从数组中删除此元素
1个回答
展开全部
//声明一个数组
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;
});
}
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;
});
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询