1

我目前正在使用 JavaScript 开发动态 365 门户,以填充由动态填充的选项集。目前我已经清空了现有数组并将显示数组的大小设置为新数组。

通常在这种情况下,您会使用 push、add 或 concat 来添加数组,但是我似乎无法使用这些方法。

有人对如何添加选项有任何建议吗?以下是我当前使用的 switch 语句的示例:

switch (region.toString()) {
  case "3546564": // value for the region
    {
      // Making the cleared array the same size as the new array
      countyPrvOptions.length = countyList.length;

      for (var j = 0; j < countyList.length; j++) {
        // attempting to push each option of the new array into the display array
        countyPrvOptions.push(countyList[j].toString());
      }

      break;
    }
}
4

0 回答 0