Javascript设置一个由字符串和另一个变量连接的变量

时间:2013-10-25 22:48:39

标签: javascript jquery

我是使用Javascript的新手,我遇到了这个问题,我确信这是一个使用正确语法的简单修复。

我有一个我声明的变量(totalRow1)。我需要稍后设置该变量,但需要将其与字符串和另一个变量(currentCardRow)的值连接。

var totalRow1;
var currentCardRow = 1;

 function calculateRow(){ 

 "totalRow" + currentCardRow = 50;

 }

感谢您的帮助。

1 个答案:

答案 0 :(得分:0)

this["totalRow" + currentCardRow] = 50;