タグ

ブックマーク / plugins.jquery.com (1)

  • Plugins | jQuery Plugins

    // Convert CSV data into array of arrays jQuery.csv()("1,2,3\n4,5,6\n7,8,9\n"); // = [ [1,2,3], [4,5,6], [7,8,9] ] // It handles quotes jQuery.csv()('a,"b,c",d'); // = [ ['a', 'b,c', 'd'] ] // You can use any delimiter, e.g. tab jQuery.csv("\t")("a\tb\nc\td\n"); // = [ ['a','b'], ['c','d'] ] // Quick usage with AJAX: jQuery.get(csvfile, function(data) { array = jQuery.csv()(data); }); // Using acr

    hiroomi
    hiroomi 2010/03/30
    「jQuery でCSVデータを簡単に取り扱うことができるjQueryプラグインです。」
  • 1