js字符串转数组

var s = "abc,abcd,aaa";

ss = s.split(",");// 在每个逗号(,)处进行分解

原文地址:https://www.cnblogs.com/zjj1990/p/7580217.html