0
テーブルをエクスポートするには、table2excel jQueryプラグインを使用しています。エクスポートすると.xlsでエクスポートされますが、Microsoft Office Excelを使用して開くと、 "ファイルを開くことができません"、 GoogleドライブでGoogle Officeを使用して開きます。 Google Wordを使用して正しく開きます。htmlテーブルをExcelのxlsフォーマットにエクスポートできません
Office Excelでファイルを開きたいとします。 は、これは私のコードです:
$('#excel').click(function(){
$("#tables").table2excel({
exclude: ".table",
name: "Worksheet Name",
filename: "Rapor",
fileext: ".xls",
exclude_img: true,
exclude_links: true,
exclude_inputs: true
});
});
<table class="table" id="tables">
<thead class="thead-inverse">
<tr>
<th>Mağaza Adı</th>
<th>ID No</th>
<th>Ariza Sınıfı</th>
<th>İş Tipi</th>
<th>Tarih</th>
<th>Malzeme Kodu</th>
<th>Malzeme Adi</th>
<th>Miktar</th>
<th>Birim</th>
<th>Fiyat</th>
<th>Toplam Fiyat</th>
</tr>
</thead>
</table>
Excelを起動しよう - >ファイル - >オプション - >トラストセンター - >トラストセンター設定 - >保護されたビュー:すべてのチェックボックスをオンにして、Excelを再起動します。 – Khaleel
あなたのお越しをお待ちしております –
解決策として入れてみてください。 –