SoFunction
Updated on 2025-04-03

JS implements the operation of exporting Excel and CSV files

1. Export Excel by js

<html>
<head>
  
</head>
<body>
<script type="text/javascript" src="./"></script>
<script type="text/javascript">
/**
  * A common method of opening the download dialog box, no specific compatibility has been tested
  * @param url download address, it can also be a blob object, a must-have
  * @param saveName Save the file name, optional
  */
function openDownloadDialog(url, saveName) {
    if (typeof url == 'object' && url instanceof Blob) {
        url = (url); // Create a blob address    }
    var aLink = ('a');
     = url;
     = saveName || ''; // New attributes added to HTML5, specify the file name to save, you can do not have a suffix. Note that file:/// mode will not take effect    var event;
    if () event = new MouseEvent('click');
    else {
        event = ('MouseEvents');
        ('click', true, false, window, 0, 0, 0, 0, 0, false, false, false, false, 0, null);
    }
    (event);
}
// Convert a sheet into the final excel file blob object, and then use the downloadfunction sheet2blob(sheet, sheetName) {
    sheetName = sheetName || 'sheet1';
    var workbook = {
        SheetNames: [sheetName],
        Sheets: {}
    };
    [sheetName] = sheet;
    // Generate excel configuration items    var wopts = {
        bookType: 'xlsx', // The file type to generate        bookSST: false, // Whether to generate a Shared String Table, the official explanation is that the generation speed will decrease if enabled, but there is better compatibility on low-version IOS devices        type: 'binary'
    };
    var wbout = (workbook, wopts);
    var blob = new Blob([s2ab(wbout)], { type: "application/octet-stream" });
    // String to ArrayBuffer    function s2ab(s) {
        var buf = new ArrayBuffer();
        var view = new Uint8Array(buf);
        for (var i = 0; i != ; ++i) view[i] = (i) & 0xFF;
        return buf;
    }
    return blob;
}
</script>


<script type="text/javascript">
var exportDataSource = [{
                    name: 'Passenger A',
                    phone: '123456789',
                    email: '000@'
                }, {
                    name: 'Cannon Fodder B',
                    phone: '123456789',
                    email: '000@'
                }, {
                    name: 'Bandit C',
                    phone: '123456789',
                    email: '000@'
                }, {
                    name: 'Rogue',
                    phone: '123456789',
                    email: '000@'
                }, ]; //Export json data sourcefunction exportExcel() {
            var excelItems = [];
            for (let i = 0; i < ; i++) {
                if (exportDataSource[i].name != "") {
                    ({
                        "Name": exportDataSource[i].name,
                        "Telephone": exportDataSource[i].phone,
                        "Mail": exportDataSource[i].email
                    }); //property                }
            }
            var sheet = .json_to_sheet(excelItems);
            openDownloadDialog(sheet2blob(sheet), '');
        }
</script>


<a style="float: right;" onclick="exportExcel()">Export and download</a>
</body>
</html>

2. JS implements json to export csv

<html>
<head>
  <p style="font-size: 20px;color: red;">useaThe tag method willjsonExportcsvdocument</p>
  <button onclick='tableToExcel()'>Export</button>
</head>
<body>
  <script>
            
    function tableToExcel(){
      //Json data to be exported      const jsonData = [
        {
          name:'Passenger A',
          phone:'123456789',
          email:'000@'
        },
        {
          name:'Cannon Fodder B',
          phone:'123456789',
          email:'000@'
        },
        {
          name:'Bandit C',
          phone:'123456789',
          email:'000@'
        },
        {
          name:'Rogue',
          phone:'123456789',
          email:'000@'
        },
      ]
      //Column titles are separated by commas, each comma is separated by a cell      let str = `Name,Telephone,Mail\n`;
      //Increase\tIn order not to display scientific notation or other formats,      for(let i = 0 ; i <  ; i++ ){
        for(let item in jsonData[i]){
            str+=`${jsonData[i][item] + '\t'},`;     
        }
        str+='\n';
      }
      //encodeURIComponent solves Chinese garbled code      let uri = 'data:text/csv;charset=utf-8,\ufeff' + encodeURIComponent(str);
      //Implemented by creating a tag      let link = ("a");
       = uri;
      //Name the downloaded file       =  "json data table.csv";
      (link);
      ();
      (link);
    }
 
</script>
</body>
</html>

3. JS implements json export csv

<html>
<head>
  <p style="font-size: 20px;color: red;">usetableThe tag method willjsonExportxlsdocument</p>
  <button onclick='tableToExcel()'>Export</button>
</head>
<body>
  <script>
            
    function tableToExcel(){
      //Json data to be exported      const jsonData = [
        {
          name:'Passenger A',
          phone:'123456',
          email:'123@'
        },
        {
          name:'Cannon Fodder B',
          phone:'123456',
          email:'123@'
        },
        {
          name:'Bandit C',
          phone:'123456',
          email:'123@'
        },
        {
          name:'Rogue',
          phone:'123456',
          email:'123@'
        },
      ]
      //Column title      let str = '<tr><td>Name</td><td>Tel</td><td>Email</td></tr>';
      //Loop traversal, add tr tags for each row, and add td tags for each cell      for(let i = 0 ; i &lt;  ; i++ ){
        str+='&lt;tr&gt;';
        for(let item in jsonData[i]){
            //Increase\tIn order not to display scientific notation or other formats,            str+=`&lt;td&gt;${ jsonData[i][item] + '\t'}&lt;/td&gt;`;     
        }
        str+='&lt;/tr&gt;';
      }
      //Worksheet name      let worksheet = 'Sheet1'
      let uri = 'data:application/-excel;base64,';
 
      //Downloaded table template data      let template = `&lt;html xmlns:o="urn:schemas-microsoft-com:office:office" 
      xmlns:x="urn:schemas-microsoft-com:office:excel" 
      xmlns="http:///TR/REC-html40"&gt;
      &lt;head&gt;&lt;!--[if gte mso 9]&gt;&lt;xml&gt;&lt;x:ExcelWorkbook&gt;&lt;x:ExcelWorksheets&gt;&lt;x:ExcelWorksheet&gt;
        &lt;x:Name&gt;${worksheet}&lt;/x:Name&gt;
        &lt;x:WorksheetOptions&gt;&lt;x:DisplayGridlines/&gt;&lt;/x:WorksheetOptions&gt;&lt;/x:ExcelWorksheet&gt;
        &lt;/x:ExcelWorksheets&gt;&lt;/x:ExcelWorkbook&gt;&lt;/xml&gt;&lt;![endif]--&gt;
        &lt;/head&gt;&lt;body&gt;&lt;table&gt;${str}&lt;/table&gt;&lt;/body&gt;&lt;/html&gt;`;
      //Download template       = uri + base64(template)
    }
    //Output base64 encoding    function base64 (s) { return (unescape(encodeURIComponent(s))) }
&lt;/script&gt;
&lt;/body&gt;
&lt;/html&gt;

4. JS implements Tab to Excel

&lt;!DOCTYPE html&gt;
&lt;html lang="en"&gt;

&lt;head&gt;
    &lt;meta charset="UTF-8"&gt;
    &lt;meta name="viewport" content="width=device-width, initial-scale=1.0"&gt;
    &lt;meta http-equiv="X-UA-Compatible" content="ie=edge"&gt;
    &lt;title&gt;excel Export test&lt;/title&gt;
    &lt;style&gt;
        table {
            border-collapse: collapse;
            text-align: center;
            vertical-align: middle;
            width: 800px;
            font-size: 20px;
        }
        
        button {
            height: 30px;
            width: 100px;
            margin: 20px 20px;
            background: yellowgreen;
            border-radius: 10px;
            outline: none;
        }
        
        input {
            height: 30px;
            padding-left: 10px;
            margin: 10px;
        }
    &lt;/style&gt;
&lt;/head&gt;

&lt;body&gt;
    &lt;div  style="width:900px;margin:20px auto;"&gt;
        &lt;h3&gt;jsscript Exportexceltest&lt;/h3&gt;
        &lt;table  border="1" cellspacing="0" cellpadding="0"&gt;
            &lt;thead&gt;
                &lt;tr&gt;
                    &lt;th&gt;ID&lt;/th&gt;
                    &lt;th&gt;Name&lt;/td&gt;
                        &lt;th&gt;age&lt;/td&gt;
                            &lt;th&gt;motto&lt;/th&gt;
                &lt;/tr&gt;
            &lt;/thead&gt;
            &lt;tbody&gt;
                &lt;tr&gt;
                    &lt;td&gt;1&lt;/td&gt;
                    &lt;td&gt;Zhang San&lt;/td&gt;
                    &lt;td&gt;18&lt;/td&gt;
                    &lt;td&gt;There are more people leaving,Turned into a road。&lt;/td&gt;
                &lt;/tr&gt;
                &lt;tr&gt;
                    &lt;td&gt;2&lt;/td&gt;
                    &lt;td&gt;Li Si&lt;/td&gt;
                    &lt;td&gt;88&lt;/td&gt;
                    &lt;td&gt;Everyone has their own way,Which one belongs to you?&lt;/td&gt;
                &lt;/tr&gt;
                &lt;tr&gt;
                    &lt;td&gt;3&lt;/td&gt;
                    &lt;td&gt;Wang Wu&lt;/td&gt;
                    &lt;td&gt;81&lt;/td&gt;
                    &lt;td&gt;Walking someone else's way,Let him have no idea!&lt;/td&gt;
                &lt;/tr&gt;
            &lt;/tbody&gt;
        &lt;/table&gt;

        &lt;label&gt;
            Name:&lt;input type="text" autocomplete  placeholder="Please enter your name..." &gt;
        &lt;/label&gt;

        &lt;label&gt;
            age:&lt;input type="text" autocomplete  placeholder="Please enter your age..."&gt;
        &lt;/label&gt;

        &lt;label&gt;
            motto:&lt;input type="text" autocomplete  placeholder="Please enter your motto..." &gt;
        &lt;/label&gt;


        &lt;button &gt;Add information&lt;/button&gt;
        &lt;button  onclick="btn_export()"&gt;Export文件&lt;/button&gt;
    &lt;/div&gt;
    &lt;script src="./"&gt;&lt;/script&gt;
    &lt;script src="./"&gt;&lt;/script&gt;
    &lt;script src="./"&gt;&lt;/script&gt;

    &lt;script&gt;
        function btn_export() {
            var table = ("#tb");
            var sheet = .table_to_sheet(table); //Convert a table object to a sheet object            openDownloadDialog(sheet2blob(sheet), '');
        }


        var id = $("input").length + 1;
        $(function() {
            $("#add").click(function() {
                var name = $("#name").val();
                var age = $("#age").val();
                var sex = $("#sex").val();
                $("tbody").append("&lt;tr&gt;&lt;td&gt;" + id + "&lt;/td&gt;&lt;td&gt;" + name + "&lt;/td&gt; &lt;td&gt;" + age + "&lt;/td&gt; &lt;td&gt;" + sex + "&lt;/td&gt;&lt;/tr&gt;");
                id++;
                $("input").val('');
            });
        })
    &lt;/script&gt;
&lt;/body&gt;

&lt;/html&gt;

This is all about this article about JS implementation exporting Excel and CSV files. I hope it will be helpful to everyone's learning and I hope everyone will support me more.