Tag: CSV CSV

使用jQuery和html导出为CSV

我有一个表格数据,我需要导出到CSV没有使用任何外部插件或API。 我使用了传递MIMEtypes的window.open方法,但遇到了如下的问题: 如何确定Microsoft Excel或Open Office是否安装在使用jQuery的系统上 代码应该独立于系统上正在安装什么,即openoffice或ms excel。 我相信CSV是这两种编辑能够期待的格式。 码 <html> <head> <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script> <script type="text/JavaScript"> $(document).ready(function(){ $("#btnExport").click(function(e) { var msg = GetMimeTypes(); //OpenOffice window.open('data:application/vnd.oasis.opendocument.spreadsheet,' + $('#dvData').html()); //MS-Excel window.open('data:application/vnd.ms-excel,' + $('#dvData').html()); //CSV window.open('data:application/csv,charset=utf-8,' + $('#dvData').html()); e.preventDefault(); }); }); function GetMimeTypes () { var message = ""; // Internet Explorer supports the mimeTypes collection, but it is […]