最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

How to concatenate var names in javascript? - Stack Overflow

programmeradmin2浏览0评论

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
Add a ment  | 

5 Answers 5

Reset to default 12

Try 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);
发布评论

评论列表(0)

  1. 暂无评论