我想动态生成一个整数(在以下情况下为 100 或 500)并使用它来访问单独的数组。在后面的步骤中(不是下面代码的一部分),我还想以相同的方式访问这些数组的不同部分(“消息 1、2 或 3”)。
对于这个概念证明,我没有动态生成整数,而是将其设置为 100。
然后我尝试使用eval()
动态生成由“警告”和100组成的数组名称,但它无法正常工作。
这是我的代码:
// two arrays are defined, warning100 and warning500
var warning100 = [
{ "message1":"Ok, go ahead and start typing!" },
{ "message2":"Keep going!" },
{ "message3":"You can do it!" }
];
var warning500 = [
{ "message1":"Slow down..." },
{ "message2":"That's it!" },
{ "message3":"Maximum reached." }
];
// set i to 100 and h to 1 for testing purposes, will be random integers in the final version
var i = 100;
var h = 2;
// create variable names as a combination of a string and i or h
// those variables will be used to access one of the arrays from above and one of the messages;
eval("var warningNumber = warning" + i + ";");
eval("var messageNumber = message" + h + ";");
/* alternative code for creating the two variable values
var warningNumber = "warning" + i;
var messageNumber = "message" + h;
*/
// the variable warningNumber from above is now used again to access the array warning100
// the varaible messageNumber is used to access one of the messages
// within that array message1 should be displayed
// create variable to be used in the document.write below
var warning = warningNumber[0].messageNumber;
// should alert "Ok, go ahead and start typing!"
alert(warning);