var List = [one,two,three]; for (var i = 0; i < List.length; i++) { alert(orderList[i]); }
这样的吼,为啥我出的数据为o n e , t w o , t....这种一个个的啊
var List = ['one','two','three']
没有别的方法吗?因为我的List是动态获取的我试着改成List+=‘ " ’+Data+' ", ';也没用耶
@你猜丶: 你先说清楚你要干啥吧.
你可以先join(‘’) ,然后split(‘,’) 最后for in 可以取出one two three; 还有就是你没表达清楚你的问题,[one,two,three] 这种数组 在js中会报错的