web-dev-qa-db-ja.com

JavaScript-HTMLテーブルデータをExcelにエクスポート


HTMLテーブルをExcelに変換しようとしています。単純なテーブルをExcelに変換するJavaScript関数を試してみましたが、うまく機能しています。複数のテーブルがある場合、どのようにすればすべてのテーブルデータをExcelファイルに追加できますか?これが私が試したものです。 2つのテーブルを作成し、テーブルインデックスtestTableおよびtestTable1を指定しました。

ボタンをクリックしたときにこれらの2つのテーブルIDをJavaScript関数に渡すにはどうすればよいですか?今すぐボタンをクリックすると、'testTable'のみが渡されるため、最初のテーブルのみがExcelにエクスポートされます。複数のテーブルをエクスポートするにはどうすればよいですか:testTabletestTable1などのExcelに?

JavaScriptは次のとおりです。

<script>

var tableToExcel = (function() {
var uri = 'data:application/vnd.ms-Excel;base64,'
, template = '<html xmlns:o="urn:schemas-Microsoft-com:office:office" xmlns:x="urn:schemas-Microsoft-com:office:Excel" xmlns="http://www.w3.org/TR/REC-html40"><head><!--[if gte mso 9]>    
<xml>
<x:ExcelWorkbook><x:ExcelWorksheets><x:ExcelWorksheet><x:Name>{worksheet}
</x:Name><x:WorksheetOptions><x:DisplayGridlines/></x:WorksheetOptions>
</x:ExcelWorksheet></x:ExcelWorksheets>
</x:ExcelWorkbook>
</xml>
<![endif]-->
</head>
<body>
<table>{table}</table></body></html>'
, base64 = function(s) { return window.btoa(unescape(encodeURIComponent(s))) }
, format = function(s, c) { return s.replace(/{(\w+)}/g, function(m, p) { return c[p]; }) }
return function(table, name) {
if (!table.nodeType) table = document.getElementById(table)
var ctx = {worksheet: name || 'Worksheet', table: table.innerHTML}
window.location.href = uri + base64(format(template, ctx))
}
})()

</script>

これがHTML部分です

<table id="testTable">
    <thead>
        <tr>
            <th>Name</th>
            <th>ACP</th>
            <th>OEMCP</th>
            <th>Unix<br>
                NT 3.1</th>
            <th>Unix<br>
                NT 3.51</th>
            <th>Unix<br>
                95</th>
        </tr>
    </thead>
</table>
<table id="testTable1">
    <thead>
        <tr>
            <th>Name</th>
            <th>ACP</th>
            <th>OEMCP</th>
            <th>Windows<br>
                NT 3.1</th>
            <th>Windows<br>
                NT 3.51</th>
            <th>Windows<br>
                95</th>
        </tr>
    </thead>
</table>

どうすればこれを行うことができますか?
ありがとう

12
shockwave

別のFormatメソッドをお勧めします。 John Resigマイクロテンプレートは、必要なことを実行するための非常に優れたシンプルなツールです。 ( ejohn microtemplating

(function(){
  var cache = {};

  this.tmpl = function tmpl(str, data){
    // Figure out if we're getting a template, or if we need to
    // load the template - and be sure to cache the result.
    var fn = !/\W/.test(str) ?
      cache[str] = cache[str] ||
        tmpl(document.getElementById(str).innerHTML) :

      // Generate a reusable function that will serve as a template
      // generator (and which will be cached).
      new Function("obj",
        "var p=[],print=function(){p.Push.apply(p,arguments);};" +

        // Introduce the data as local variables using with(){}
        "with(obj){p.Push('" +

        // Convert the template into pure JavaScript
        str.replace(/[\r\t\n]/g, " ")
              .split("{{").join("\t")
              .replace(/((^|}})[^\t]*)'/g, "$1\r")
              .replace(/\t=(.*?)}}/g, "',$1,'")
              .split("\t").join("');")
              .split("}}").join("p.Push('")
              .split("\r").join("\\'")
              + "');}return p.join('');");

    // Provide some basic currying to the user
    return data ? fn( data ) : fn;
  };
})();

使い方はとても簡単です。これにより、HTML間の変数を表示できるだけでなく、JavaScriptコードも実行できます

このマイクロテンプレートを使用するには、テンプレート文字列を変更する必要があります。

{{for(var i=0; i<tables.length;i++){ }}
    <table>
        {{=tables[i]}}
    </table>
{{ } }}

最後に、例に表示されるすべてのテーブルを選択するだけで済みます

document.getElementsByTagName("table");

あなたはそれがどのように機能するかを見ることができます http://jsfiddle.net/Scipion/P8rpn/1/

9
Scipion

関数を作成し、それにtableIDを渡します

 function passing_id_to_Excel(tableID){ 
  var myTableid =
 document.getElementById(tableID) //remaining code }
0
divyabharathi
  1. 各テーブルのチェックボックスを追加します。 JavaScriptを使用して、チェックされたものを処理します。
  2. すべてのテーブルを変換するだけの場合は、$('table').each(function() { do something })を使用できます。
0
gongzhitaao