陣列我有這個數組對象過濾器使用jQuery
var customers = [{
"id": "1",
"name": "1",
"position": "1",
"office": "<button data-id=2 class='btn btn-danger'><i class='fa fa-trash fa-lg'></i> Delete record</button>",
"active": "1"
}, {
"id": "2",
"name": "2",
"position": "2",
"office": "<button data-id=2 class='btn btn-danger'><i class='fa fa-trash fa-lg'></i> Delete record</button>",
"active": 0
}];
我需要的是做出一個新的陣列,將只擁有活躍客戶羣,新的陣列看起來像
var activeCustomers = [{
"id": "1",
"name": "1",
"position": "1",
"office": "1",
"active":"1"
}
}];
因爲你可能會看到只有一個活躍的客戶?
您所擁有的'activeCustomers'變量是無效的JSON。還有一個額外的支架。另外,你想'辦公室'是1?看起來你會希望'辦公室'保持相同的價值,因爲你從來沒有提到過。 – 2014-09-29 14:34:39
這不是json,它在數組中對象 – 2014-09-29 14:36:09
JSON代表JavaScript Object Notation和'activeCustomers'無效。 – 2014-09-29 14:37:38