我使用jQuery 1.6動態創建和刪除的JavaScript關聯數組鍵和值
我不是JavaScript的這麼好,我需要動態地創建具有2個動態參數數組:json.id
和json.name
。
數組創建應導致:
[
[json.id]
[
json.name,
json.name,
json.name,
etc .....
]
[json.id]
[
json.name,
json.name,
json.name,
etc ....
]
etc ...
]
然後,我需要能夠刪除json.id
或json.id json.name
....
有沒有人能告訴我如何與做到這一點所有瀏覽器的支持?
THX 將帖子
的邏輯是這樣的:(希望這是明確的:P)
//first ajax call result:
[{json.id_parent:json.name,json.id_parent:json.name,json.id_parent:json.name, etc..}]
//second ajax call results passing the json.id_parent:
[{json.id_parent_child:json.name,json.id_parent_child:json.name,json.id_parent_child:json.name,etc...}]
//now for each call = id_parent create an associative array:
{
id_parent:{id_parent_child,id_parent_child,etc ....},
id_parent:{id_parent_child,id_parent_child,etc ....},
etc...
}
2 dinamical paramas? –
數據來自您用來創建此數組的數據來自哪裏? –
數據來自json ajax結果,對於每個ajax請求我有許多不同的json.id,然後對於每個json.id都有一個新的ajax調用,它檢索許多與該json.id相關的不同json.name。我是 – sbaaaang