Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个数组的字符串表示:
'["item1", "item2", "item3"]'
我正在尝试将其转换回数组。
任何指针表示赞赏。
只需使用JSON.parse('["item1", "item2", "item3"]');
JSON.parse('["item1", "item2", "item3"]');
尝试JSON.parse:
ary = JSON.parse(s);
大多数浏览器本机支持它,对于其他浏览器,您需要json.js
你也可以使用
var genericList = eval('(' + s + ')'); for(i=0;i<genericList.lengthl;i++){ alert("element : " + genericList[i]); }