Does JQuery support Dictionaries (key, value) collection ?
I would like to set the following data in a structure
[1, false]
[2, true]
[3, false]
with the ability to add, lookup, delete and update.
Any help!
|
Does JQuery support I would like to set the following data in a structure
with the ability to add, lookup, delete and update. Any help! |
||||
| show 3 more comments |
|
No, jQuery doesn't, but Javascript does. Just use an object:
|
|||||||
|
|
With pure JavaScript,
|
|||
|
|
|
Yes, you can use object to do this:
|
|||
|
|
|
jQuery, no. But JavaScript does. There are only two structures in JavaScript, arrays and objects. Objects can be used as dictionary, where the properties are the "keys":
Properties of objects can be either accessed with dot notation, |
|||||
|
|
You don't need separate dictionary classes, since Javascript objects act as dictionaries. See this:
Full article here: http://msdn.microsoft.com/en-us/magazine/cc163419.aspx |
|||
|
|
JSON, as an array of objects ([[1, false],[2, true],[3, false]]) or with key, value association ([{"id": 1, "enabled": false},{"id": 2, "enabled": true},{"id": 1, "enabled": false}]). But I'm not sure there are in-built methods for manipulation. – Amil Waduwawara Mar 23 '11 at 7:54