我有一個CVS文件是這樣的:cvs to javascript刪除第一行?
Month, 2005, 2006
jan, 50,67
feb, 40,78
mar, 60,70
apr, 64,60
may, 70,66
june, 80,77
july, 90,80
aug, 86,89
sep, 80,99
oct, 76,90
nov, 70,80
dec, 55,77
我想出來獲得第一行,並只使用數據,第二行和之後。我的代碼只能按列獲取數據提取數據。有人能告訴我如何獲得第一行嗎?
var lines = data.split('\n');
$.each(lines, function(lineNo, line) {
var items = line.split(',');
//get first column
c.push(items[0]);
//get second column
d.push(parseInt(items[1]));
//get 3rd column
e.push(parseInt(items[2]));
感謝您
https://www.google.com/search?q=javascript+remove+first+array+element –