Possible Duplicate:
how to fetch array keys with jQuery?
php built-in function array_keys(), equivalent in jquery
is there any built in function in jquery similar to that of php array_keys(),.
please suggest
php built-in function please suggest |
|||||||||
|
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
You will have to define your own function to get the same functionality. Try this:
|
|||
|
|
|
Take a look at PHPJS, a project that aims to reproduce many PHP functions in vanilla JavaScript with minimal dependencies. In your case, you want |
|||
|
|
|
No there isn't anything specific in jQuery for this. There is a javascript method but it is not widely supported yet
|
|||
|
|
|
You don't need jQuery or any other library for this -- it's a standard part of Javascript.
That should be sufficient for you to loop through the object. But if you want to actually get the keys into their own array (ie turn it into a genuine clone of the php function), then it's fairly trivial to extend the above:
Note, there are caveats with using the (For more info on the caveats, see http://yuiblog.com/blog/2006/09/26/for-in-intrigue/) |
||||
|
|
|
In JavaScript there's no such thing like associative arrays. Objects (object literals) handle similar cases.
And now |
|||
|
|