1
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

クリックしたtable要素をCSVとしてダウンロードするJavaScriptスニペット

Last updated at Posted at 2019-04-14

クリックしたtable要素をCSV形式でダウンロードするスニペット。
Cheome DevTooolsのConsole機能かSnippets機能から使用する。
image.png
##使い方

  1. 後述のスクリプトをChrome DevToolsのConsoleから実行
  2. 「CSVとしてダウンロードしたいtable要素をクリックしてください」と出るのでEnterで消す
  3. CSV形式でダウンロードしたいtable要素をクリック
  4. クリックした要素がCSV形式でダウンロードされる
  5. しあわせ

##スクリプト

{
  let loader=(src,callback)=>{
    let s=document.createElement('script');
    s.src=src;
    document.body.appendChild(s);
    s.onload=()=>{callback()};
  }
  loader('//ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js',
    ()=>{
      loader('//cdn.jsdelivr.net/npm/table2csv@1.1.3/src/table2csv.min.js',
        ()=>{
          jQuery('table').on('click.table2csv',function(){
            jQuery(this).table2csv('output',{appendTo:'#out'});
            jQuery(this).table2csv('output', {filename:'table.csv'});
            jQuery(this).table2csv();
            jQuery('table').off('click.table2csv');
          });
          alert('CSVとしてダウンロードしたいtable要素をクリックしてください');
        }
      )
    }
  );
}

##使用したライブラリ

1
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?