我有一个像 [“一,二,三”] 的数组。 我想将其转换为 [“one”,“two”,“three”] 。 我正在使用拆分来执行此操作:
$var temp=["one, two, three"];
temp.split(", ");
这给了我错误。知道怎么做吗?
答案 0 :(得分:3)
这是一个包含单个值的数组,您可以使用[0]
访问该数组以获取字符串
var temp = ["one, two, three"];
var arr = temp[0].split(", ");
似乎更容易删除括号
var arr = "one, two, three".split(', ');
或者将其作为数组开始编写?
答案 1 :(得分:0)
["one, two, three"].pop().split(", ")
答案 2 :(得分:0)
var temp=["one, two, three"];
temp[0].split(", ")