我有这样的CVS文件:

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]));


谢谢

最佳答案

您可以使用Array.prototype.shift方法。

// removes the first item (the first row) from the array and returns it
var removedRow = lines.shift();

关于javascript - CSV到javascript删除第一行?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/33794288/

10-13 09:26