我正在尝试使所有数组索引都小写字符串,但是它不起作用。我在这里查看了其他答案,并在添加toString()之前尝试了使用toLowerCase的解决方案,但是它不起作用,这很奇怪。

我创建了问题here的jsfiddle。

JS:

$(colorArr).each(function(i, item) // loop thru each of elements in colorArr and make lowercase + trim
{
    if(colorArr[i] !== undefined) // check if colorArr index undefined
      {
      colorArr[i].toString().toLowerCase().trim(); // FIX HERE
      /* TRIED - DIDN'T WORK!
      colorArr[i].toLowerCase().trim();
      */
       }
});

最佳答案

我更新了你的小提琴

https://jsfiddle.net/af91r2cq/6/

colorArr[i] = colorArr[i].toString().toLowerCase().trim(); // FIX HERE


你的路真的很近;)

关于javascript - JavaScript-使toLowerCase()的数组索引不起作用,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/36180297/

10-11 23:39