我正在尝试在 jQuery 中创建一个数组,该数组通过循环填充。
count = jQuery('#count_images').val();
使用上面的代码,我得到一个整数值(例如 5)。我想知道的是如何在 jQuery 中做这样的事情:
int arrLength = count;
string[] arr1 = new string[arrLength];
int i = 0;
for (i = 0; i < arr1.Length; i++){
arr1[i] = i;
}
所以最后我的数组(例如 5)看起来像这样[1,2,3,4,5]
: