js 从网页中得到数组格式的字符串,将其恢复成数组的代码
时间: 2024-05-12 10:16:11 浏览: 42
通过js实现字符串转数组
可以使用 JSON.parse() 方法将数组格式的字符串恢复成数组。具体代码如下:
```
var str = "[1, 2, 3, \"hello\", {\"name\": \"world\"}]";
var arr = JSON.parse(str);
console.log(arr); // [1, 2, 3, "hello", {"name": "world"}]
```
阅读全文