0
我正在使用jquery插件tableExport.jquery.plugin導出html表。 插件工作正常。 我使用Excel 2007中將html表導出爲excel文件打開安全警告問題
問題: 當我打開導出的文件,它說你 試圖打開該文件是在不同的格式由文件extension.etc
指定當我說是的,它打開文件,我可以看到我的內容。 但我不需要看到打開後出現的警告。
// For BIFF .xls files
var data_type = 'data:application/vnd.ms-excel;filename=exportData.xls;' + base64data;
// For Excel 2007 and above .xlsx files
// var data_type = 'data:application/vnd.openxmlformats-
officedocument.spreadsheetml.sheet;filename=exportData.xls;' + base64data;
我試過上述兩種方法,但它從來沒有奏效。