I want to use the value of a variable to access an object.
Let's say I have an object named myobject.
I want to fill a variable with this name and use the variable to access the object.
Example:
var objname = 'myobject';
{objname}.value = 'value';
|
I want to use the value of a variable to access an object. Let's say I have an object named myobject. I want to fill a variable with this name and use the variable to access the object. Example:
|
|||
|
|
|
Global:
Local:
|
|||||||||||||||||||
|
|
The object exists in some scope, so you can almost always access the variable via this syntax:
The only place where this gets tricky is when you are in a closed scope and you want access to a top-level local variable. When you have something like this:
You can get around that by using
Your best bet is to have a reference to a name in an always-going-to-be-there object (like Thus:
|
||||
|
|
|
Is it a global variable? If so, these are actually part of the If it's local to a function, I don't think there's a good way to do what you want. |
|||
|
|
|
You can't do this in general, except at the window scope, where you can write |
|||
|
|
|
You could use
|
|||||||||||||||||||
|
|
I think Shaz's answer for local variables is hard to understand, though it works for non-recursive functions. Here's another way that I think it's clearer (but it's still his idea, exact same behavior). It's also not accessing the local variables dynamically, just the property of the local variable. Essentially, it's using a global variable (attached to the function object)
Which is essentially the same thing as creating a global to store the variable, so you can access it as a property. Creating a global to do this is such a hack. Here's a cleaner hack that doesn't create global variables, it uses a local variable instead.
|
|||
|
|
|
When using the window[objname], please make sure the objname is global variables. Otherwise, will work sometime, and fail sometimes. window[objname].value. |
|||
|
|