admin管理员组文章数量:1339444
How can i concatenate var names to declare new vars in javascript?:
var foo = 'var';
var bar = 'Name';
How can i declare variable varName?
How can i concatenate var names to declare new vars in javascript?:
var foo = 'var';
var bar = 'Name';
How can i declare variable varName?
Share Improve this question edited May 28, 2009 at 3:04 Daniel Magliola 32.5k63 gold badges174 silver badges246 bronze badges asked May 28, 2009 at 2:56 BabikerBabiker 18.8k28 gold badges82 silver badges127 bronze badges 3- 3 Just out of curiosity, why would you need to do that? Chances are, you're doing something wrong. – Sasha Chedygov Commented May 28, 2009 at 3:06
- It make Javascript harder to read because you can't search where declare variable by using simple search like this("var [variable name]"). – user94893 Commented May 28, 2009 at 3:35
- 1 I have pre-declared var names that the user might be invoke based on user text input. – Babiker Commented May 28, 2009 at 3:40
5 Answers
Reset to default 12Try something like:
window[foo + bar] = "whatever";
alert(varName);
do not use the eval function unless you are absolutely certain about what's going in. window[] is much safer if all you're doing is variable access
To dynamically declare a local variable (i.e. var fooName
), I guess you could use eval
:
eval('var ' + foo + bar);
Best to avoid eval
though, if you can avoid it (see related question).
A better way is to set an object property. Defining a global variable is equivalent to setting a property on the global object window
:
window[foo+bar] = 'someVal';
You can substitute window
for another object if appropriate.
WARNING: VaporCode! Off the top of my head...
window[foo + bar] = "contents of variable varName";
Does that work?
Locally:
this[foo+bar] = true;
Globally:
window[foo+bar] = true;
there may be a better way but eval should do it
eval('var ' + foo + bar);
本文标签: How to concatenate var names in javascriptStack Overflow
版权声明:本文标题:How to concatenate var names in javascript? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743589082a2506886.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论