ส่งออกข้อมูลตาราง html ไปยัง Excel โดยใช้ JavaScript / JQuery ทำงานไม่ถูกต้องในเบราว์เซอร์ Chrome


95

ฉันมีตาราง HTML ในเทมเพลตความเร็ว ฉันต้องการส่งออกข้อมูลตาราง html ไปยัง excel โดยใช้ java script หรือ jquery, comatibale กับเบราว์เซอร์ทั้งหมด ฉันใช้สคริปต์ด้านล่าง

<script type="text/javascript">
function ExportToExcel(mytblId){
       var htmltable= document.getElementById('my-table-id');
       var html = htmltable.outerHTML;
       window.open('data:application/vnd.ms-excel,' + encodeURIComponent(html));
    }
</script>

สคริปต์นี้ทำงานได้ดีในMozilla Firefoxโดยจะปรากฏขึ้นพร้อมกับกล่องโต้ตอบของ excel และขอตัวเลือกเปิดหรือบันทึก แต่เมื่อฉันทดสอบสคริปต์เดียวกันในเบราว์เซอร์ Chrome มันไม่ทำงานตามที่คาดไว้เมื่อคลิกที่ปุ่มจะไม่มีป๊อปอัปสำหรับ excel ข้อมูลถูกดาวน์โหลดในไฟล์ที่มี "file type: file" ไม่มีนามสกุลเช่น. xls ไม่มีข้อผิดพลาดในคอนโซล Chrome

ตัวอย่าง Jsfiddle:

http://jsfiddle.net/insin/cmewv/

ใช้งานได้ดีใน mozilla แต่ใช้ไม่ได้ใน chrome

กรณีทดสอบเบราว์เซอร์ Chrome:

ภาพแรก: ฉันคลิกที่ปุ่มส่งออกไปยัง excel

ภาพแรก: ฉันคลิกที่ปุ่มส่งออกไปยัง excel

และผลลัพธ์:

ผลลัพธ์


กรณีทดสอบสำหรับ chrome
Sukane

1
กรณีทดสอบข้างต้นล้มเหลวหากคุณใช้ผลิตภัณฑ์โอเพนซอร์ส LibreOffice และเบราว์เซอร์ Chrome แต่ถ้าคุณติดตั้ง MS Office แล้วโค้ดจะทำงานได้อย่างถูกต้อง
Sukane

คำตอบ:


172

สคริปต์ส่งออก Excel ทำงานบน IE7 +, Firefox และ Chrome

function fnExcelReport()
{
    var tab_text="<table border='2px'><tr bgcolor='#87AFC6'>";
    var textRange; var j=0;
    tab = document.getElementById('headerTable'); // id of table

    for(j = 0 ; j < tab.rows.length ; j++) 
    {     
        tab_text=tab_text+tab.rows[j].innerHTML+"</tr>";
        //tab_text=tab_text+"</tr>";
    }

    tab_text=tab_text+"</table>";
    tab_text= tab_text.replace(/<A[^>]*>|<\/A>/g, "");//remove if u want links in your table
    tab_text= tab_text.replace(/<img[^>]*>/gi,""); // remove if u want images in your table
    tab_text= tab_text.replace(/<input[^>]*>|<\/input>/gi, ""); // reomves input params

    var ua = window.navigator.userAgent;
    var msie = ua.indexOf("MSIE "); 

    if (msie > 0 || !!navigator.userAgent.match(/Trident.*rv\:11\./))      // If Internet Explorer
    {
        txtArea1.document.open("txt/html","replace");
        txtArea1.document.write(tab_text);
        txtArea1.document.close();
        txtArea1.focus(); 
        sa=txtArea1.document.execCommand("SaveAs",true,"Say Thanks to Sumit.xls");
    }  
    else                 //other browser not tested on IE 11
        sa = window.open('data:application/vnd.ms-excel,' + encodeURIComponent(tab_text));  

    return (sa);
}

เพียงสร้าง iframe เปล่า:

<iframe id="txtArea1" style="display:none"></iframe>

เรียกใช้ฟังก์ชันนี้เมื่อ:

<button id="btnExport" onclick="fnExcelReport();"> EXPORT </button>

1
ถ้าไม่ใช่แล้วสายนี้คืออะไร ?? var txt = document.getElementById ('txtArea1') contentWindow;
ตัวอย่าง

3
ใน Chrome เมื่อคุณคลิกปุ่มดาวน์โหลดจะไม่มีอะไรเกิดขึ้นเลยเมื่อใช้วิธีนี้ ไม่มีข้อผิดพลาดคอนโซลหรือสิ่งใด ๆ
Kyle Bachan

1
เป๊ะ +1 !!! มันทำงานใน IE 11, Chrome 35, Firefox 29, Opera 17 แต่ไม่ทำงานใน Safari 5.1.7 !!! :(
Suganth G

9
ฉันจะเปลี่ยนชื่อ Randome ได้อย่างไร ฉันไม่ได้ตั้งชื่อ Specefic
osman Rahimi

21
"รูปแบบไฟล์และนามสกุลของ download.xls ไม่ตรงกัน" นี่ไม่ได้ทำให้ผู้จัดการพอใจ: / มีความคิดอย่างไร?
Tom Stickel

38

ปลั๊กอิน Datatable แก้จุดประสงค์ได้ดีที่สุดและช่วยให้เราส่งออกข้อมูลตาราง HTML ไปยัง Excel, PDF, TEXT กำหนดค่าได้ง่าย

โปรดดูตัวอย่างที่สมบูรณ์ในลิงค์อ้างอิงด้านล่างนี้:

https://datatables.net/extensions/buttons/examples/html5/simple.html

(ภาพหน้าจอจากไซต์อ้างอิงข้อมูล) ใส่คำอธิบายภาพที่นี่


4
พระเจ้าช่วย! นี่คือปลั๊กอินที่ยอดเยี่ยม! ... และมีปลั๊กอินหลายตัวฝังอยู่ !! ส่งออกเรียงลำดับจัดลำดับใหม่ดูตัวอย่างก่อนพิมพ์ ฯลฯ ... แก้ไขข้อมูลทั้งหมดของฉันที่แสดงความต้องการในภาพเดียว
Gusstavv Gil

ฉันสามารถใช้สไตล์กับ excel โดยใช้ปลั๊กอินนี้ได้หรือไม่
Shruthi Sathyanarayana

@Addy นี่เป็นโซลูชัน DataTables เท่านั้นใช่ไหม
Karl

1
ปุ่มส่งออกจะลบการนับแบบเลื่อนลงแต่ละแถวหากคุณต้องการเก็บทั้งสองอย่างไว้? โปรดตรวจสอบdatatables.net/extensions/buttons/examples/initialisation/…เพื่อแก้ไข
Kaushik Das

ปลั๊กอินนั้นยอดเยี่ยมมาก มีวิธีเพียงแค่แยกรหัสที่เกี่ยวข้องเพื่อส่งออกข้อมูลและไฮไลต์ที่นี่หรือไม่? นั่นจะช่วยได้มาก ขอบคุณล่วงหน้า
Murtuza Husain

33

สิ่งนี้สามารถช่วยได้

function exportToExcel(){
var htmls = "";
            var uri = 'data:application/vnd.ms-excel;base64,';
            var 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>'; 
            var base64 = function(s) {
                return window.btoa(unescape(encodeURIComponent(s)))
            };

            var format = function(s, c) {
                return s.replace(/{(\w+)}/g, function(m, p) {
                    return c[p];
                })
            };

            htmls = "YOUR HTML AS TABLE"

            var ctx = {
                worksheet : 'Worksheet',
                table : htmls
            }


            var link = document.createElement("a");
            link.download = "export.xls";
            link.href = uri + base64(format(template, ctx));
            link.click();
}

1
จะเกิดอะไรขึ้นถ้าฉันต้องการส่งออกเฉพาะคอลัมน์ที่มองเห็นได้ในตาราง html?
Nouman Bhatti

สวัสดีฉันไม่สามารถดำเนินการใด ๆ กับแผ่นงาน EXCEL ได้เช่น: Autosum เป็นเพราะรูปแบบข้อมูลของแผ่นงาน EXCEL นี้หรือปัญหาอื่น ๆ .. ฉันต้องการความช่วยเหลือในการดำเนินการบางอย่าง
Nanda Kishore Allu

10

แทนที่จะใช้window.openคุณสามารถใช้ลิงก์กับonclickเหตุการณ์
และคุณสามารถใส่ตาราง html ลงใน uri และตั้งชื่อไฟล์ที่จะดาวน์โหลด

การสาธิตสด:

function exportF(elem) {
  var table = document.getElementById("table");
  var html = table.outerHTML;
  var url = 'data:application/vnd.ms-excel,' + escape(html); // Set your html table into url 
  elem.setAttribute("href", url);
  elem.setAttribute("download", "export.xls"); // Choose the file name
  return false;
}
<table id="table" border="1">
  <tr>
    <td>
      Foo
    </td>
    <td>
      Bar
    </td>
  </tr>
</table>

<a id="downloadLink" onclick="exportF(this)">Export to excel</a>


1
ฉันจะตั้งค่าเส้นขอบตารางความกว้าง td ฯลฯ ในฟังก์ชันได้อย่างไร
Zeffry Reynando

9

http://wsnippets.com/export-html-table-data-excel-sheet-using-jquery/ ลองใช้ลิงก์นี้อาจช่วยแก้ปัญหาของคุณได้

ใส่คำอธิบายภาพที่นี่


Uchit ขอบคุณสำหรับคำตอบ แต่ฉันได้ลองตัวอย่างนี้แล้วดังที่ได้กล่าวไปแล้วฉันตั้งคำถามว่ามันทำงานได้ดีใน Mozilla แต่ไม่ใช่ใน Chorme โปรดลองตัวอย่างนี้ในเบราว์เซอร์ Chrome ได้ไหม
Sukane

5
ฉันได้ลองใช้รหัสของคุณบน jsfiddle และฉันได้ผลลัพธ์ที่เป็นบวก มันทำงานได้ดีแม้ใน chorme คุณสามารถดูในภาพด้านบนที่ดาวน์โหลดสำเร็จ
Uchit Shrestha

1
อุชิตขอบคุณใช่รหัสใช้งานได้ ปัญหาคือฉันใช้ Libre Office ดังนั้นในการส่งออก Chrome ไปยัง excel จึงทำงานได้ไม่ดี (หน้าจออ้างอิงเป็นคำถาม) แต่ใน MS office ทำงานได้ตามที่คุณได้กล่าวไว้ ขอขอบคุณที่ให้รหัส jQuery สำหรับสิ่งนี้
Sukane

ฟังก์ชันนี้ไม่ได้ส่งออกค่าของฟิลด์ที่มีดรอปดาวน์ .. และการประทับเวลา
SNT93

มันใช้ไม่ได้กับ html หลายตารางเพียงตารางเดียว ทำอย่างไรกับตารางทวีคูณ ??????
ignacio chiazzo

9

TableExport

TableExport - ไลบรารีที่เรียบง่ายและใช้งานง่ายในการส่งออกตาราง HTML ไปยังไฟล์ xlsx, xls, csv และ txt

ในการใช้ไลบรารีนี้ให้เรียกตัวTableExportสร้าง:

new TableExport(document.getElementsByTagName("table"));

// OR simply

TableExport(document.getElementsByTagName("table"));

// OR using jQuery

$("table").tableExport(); 

คุณสมบัติเพิ่มเติมสามารถส่งผ่านเพื่อปรับแต่งรูปลักษณ์ของตารางปุ่มและข้อมูลที่ส่งออกได้ ดูข้อมูลเพิ่มเติมที่นี่


รองรับ PhantomJs หรือไม่? จะรายงานข้อบกพร่องได้อย่างไร?
golimar

7

การรวมตัวอย่างเหล่านี้ของฉัน:

https://www.codexworld.com/export-html-table-data-to-excel-using-javascript https://bl.ocks.org/Flyer53/1de5a78de9c89850999c

function exportTableToExcel(tableId, filename) {
    let dataType = 'application/vnd.ms-excel';
    let extension = '.xls';

    let base64 = function(s) {
        return window.btoa(unescape(encodeURIComponent(s)))
    };

    let 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>';
    let render = function(template, content) {
        return template.replace(/{(\w+)}/g, function(m, p) { return content[p]; });
    };

    let tableElement = document.getElementById(tableId);

    let tableExcel = render(template, {
        worksheet: filename,
        table: tableElement.innerHTML
    });

    filename = filename + extension;

    if (navigator.msSaveOrOpenBlob)
    {
        let blob = new Blob(
            [ '\ufeff', tableExcel ],
            { type: dataType }
        );

        navigator.msSaveOrOpenBlob(blob, filename);
    } else {
        let downloadLink = document.createElement("a");

        document.body.appendChild(downloadLink);

        downloadLink.href = 'data:' + dataType + ';base64,' + base64(tableExcel);

        downloadLink.download = filename;

        downloadLink.click();
    }
}

1
Uncaught ReferenceError: base64 ไม่ได้กำหนดไว้
Pedro Joaquín

5

คุณสามารถใช้tableToExcel.jsเพื่อส่งออกตารางในไฟล์ excel

วิธีนี้ใช้ได้ผลดังต่อไปนี้:

1). รวม CDN นี้ไว้ในโครงการ / ไฟล์ของคุณ

<script src="https://cdn.jsdelivr.net/gh/linways/table-to-excel@v1.0.4/dist/tableToExcel.js"></script>

2). การใช้ JavaScript:

<button id="btnExport" onclick="exportReportToExcel(this)">EXPORT REPORT</button>

function exportReportToExcel() {
  let table = document.getElementsByTagName("table"); // you can use document.getElementById('tableId') as well by providing id to the table tag
  TableToExcel.convert(table[0], { // html code may contain multiple tables so here we are refering to 1st table tag
    name: `export.xlsx`, // fileName you could use any name
    sheet: {
      name: 'Sheet 1' // sheetName
    }
  });
}

3). หรือโดยใช้ Jquery

<button id="btnExport">EXPORT REPORT</button>

$(document).ready(function(){
    $("#btnExport").click(function() {
        let table = document.getElementsByTagName("table");
        TableToExcel.convert(table[0], { // html code may contain multiple tables so here we are refering to 1st table tag
           name: `export.xlsx`, // fileName you could use any name
           sheet: {
              name: 'Sheet 1' // sheetName
           }
        });
    });
});

คุณสามารถอ้างถึงลิงก์ Github นี้สำหรับข้อมูลอื่น ๆ

https://github.com/linways/table-to-excel/tree/master

หรือสำหรับการอ้างอิงตัวอย่างจริงโปรดไปที่ลิงค์ต่อไปนี้

https://codepen.io/rohithb/pen/YdjVbb

หวังว่านี่จะช่วยใครบางคน :-)


4

คุณสามารถใช้ไลบรารีเช่น ShieldUI เพื่อทำสิ่งนั้นได้

รองรับการส่งออกไปยังรูปแบบ Excel ทั้ง XML และ XLSX ที่ใช้กันอย่างแพร่หลาย

รายละเอียดเพิ่มเติมที่นี่: http://demos.shieldui.com/web/grid-general/export-to-excel


4

เกี่ยวกับตัวอย่างคำตอบตั้งแต่ 6 มิ.ย. 57 เวลา 11:59 น.:

ฉันได้แทรกสไตล์ css ที่มีขนาดตัวอักษร 20px เพื่อแสดงข้อมูล excel ที่มากขึ้น ในโค้ด sampopes <tr>แท็กนำหน้าหายไปดังนั้นฉันจึงส่งออกบรรทัดแรกและบรรทัดอื่น ๆ ของตารางภายในลูป

function fnExcelReport()
{
    var tab_text = '<table border="1px" style="font-size:20px" ">';
    var textRange; 
    var j = 0;
    var tab = document.getElementById('DataTableId'); // id of table
    var lines = tab.rows.length;

    // the first headline of the table
    if (lines > 0) {
        tab_text = tab_text + '<tr bgcolor="#DFDFDF">' + tab.rows[0].innerHTML + '</tr>';
    }

    // table data lines, loop starting from 1
    for (j = 1 ; j < lines; j++) {     
        tab_text = tab_text + "<tr>" + tab.rows[j].innerHTML + "</tr>";
    }

    tab_text = tab_text + "</table>";
    tab_text = tab_text.replace(/<A[^>]*>|<\/A>/g, "");             //remove if u want links in your table
    tab_text = tab_text.replace(/<img[^>]*>/gi,"");                 // remove if u want images in your table
    tab_text = tab_text.replace(/<input[^>]*>|<\/input>/gi, "");    // reomves input params
    // console.log(tab_text); // aktivate so see the result (press F12 in browser)

    var ua = window.navigator.userAgent;
    var msie = ua.indexOf("MSIE "); 

     // if Internet Explorer
    if (msie > 0 || !!navigator.userAgent.match(/Trident.*rv\:11\./)) {
        txtArea1.document.open("txt/html","replace");
        txtArea1.document.write(tab_text);
        txtArea1.document.close();
        txtArea1.focus(); 
        sa = txtArea1.document.execCommand("SaveAs", true, "DataTableExport.xls");
    }  
    else // other browser not tested on IE 11
        sa = window.open('data:application/vnd.ms-excel,' + encodeURIComponent(tab_text));  

    return (sa);
}   

คุณช่วยบอกวิธีลบคอลัมน์บางคอลัมน์ออกจากการส่งออกไปยัง excel ได้ไหม ตัวอย่างเช่นฉันต้องการหลีกเลี่ยงtab.rows[j].cells[13] ความช่วยเหลือของคุณเป็นที่ชื่นชมมาก
Disera

คำตอบที่ดีมากสำหรับตารางที่เรียบง่ายฉันจะเก็บบรรทัดสุดท้ายไว้: window.open('data:application/vnd.ms-excel,' + encodeURIComponent(tab_text));การเข้ารหัสมีความสำคัญมาก
Pere Pages

4

 function exportToExcel() {
        var tab_text = "<tr bgcolor='#87AFC6'>";
        var textRange; var j = 0, rows = '';
        tab = document.getElementById('student-detail');
        tab_text = tab_text + tab.rows[0].innerHTML + "</tr>";
        var tableData = $('#student-detail').DataTable().rows().data();
        for (var i = 0; i < tableData.length; i++) {
            rows += '<tr>'
                + '<td>' + tableData[i].value1 + '</td>'
                + '<td>' + tableData[i].value2 + '</td>'
                + '<td>' + tableData[i].value3 + '</td>'
                + '<td>' + tableData[i].value4 + '</td>'
                + '<td>' + tableData[i].value5 + '</td>'
                + '<td>' + tableData[i].value6 + '</td>'
                + '<td>' + tableData[i].value7 + '</td>'
                + '<td>' +  tableData[i].value8 + '</td>'
                + '<td>' + tableData[i].value9 + '</td>'
                + '<td>' + tableData[i].value10 + '</td>'
                + '</tr>';
        }
        tab_text += rows;
        var data_type = '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 border="2px">{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];
                })
            }

        var ctx = {
            worksheet: "Sheet 1" || 'Worksheet',
            table: tab_text
        }
        document.getElementById("dlink").href = data_type + base64(format(template, ctx));
        document.getElementById("dlink").download = "StudentDetails.xls";
        document.getElementById("dlink").traget = "_blank";
        document.getElementById("dlink").click();
    }

นี่ค่า 1 ถึง 10 คือชื่อคอลัมน์ที่คุณได้รับ


1

คำตอบ @sampopes เวอร์ชันของฉัน

function exportToExcel(that, id, hasHeader, removeLinks, removeImages, removeInputParams) {
if (that == null || typeof that === 'undefined') {
    console.log('Sender is required');
    return false;
}

if (!(that instanceof HTMLAnchorElement)) {
    console.log('Sender must be an anchor element');
    return false;
}

if (id == null || typeof id === 'undefined') {
    console.log('Table id is required');
    return false;
}
if (hasHeader == null || typeof hasHeader === 'undefined') {
    hasHeader = true;
}
if (removeLinks == null || typeof removeLinks === 'undefined') {
    removeLinks = true;
}
if (removeImages == null || typeof removeImages === 'undefined') {
    removeImages = false;
}
if (removeInputParams == null || typeof removeInputParams === 'undefined') {
    removeInputParams = true;
}

var tab_text = "<table border='2px'>";
var textRange;

tab = $(id).get(0);

if (tab == null || typeof tab === 'undefined') {
    console.log('Table not found');
    return;
}

var j = 0;

if (hasHeader && tab.rows.length > 0) {
    var row = tab.rows[0];
    tab_text += "<tr bgcolor='#87AFC6'>";
    for (var l = 0; l < row.cells.length; l++) {
        if ($(tab.rows[0].cells[l]).is(':visible')) {//export visible cols only
            tab_text += "<td>" + row.cells[l].innerHTML + "</td>";
        }
    }
    tab_text += "</tr>";
    j++;
}

for (; j < tab.rows.length; j++) {
    var row = tab.rows[j];
    tab_text += "<tr>";
    for (var l = 0; l < row.cells.length; l++) {
        if ($(tab.rows[j].cells[l]).is(':visible')) {//export visible cols only
            tab_text += "<td>" + row.cells[l].innerHTML + "</td>";
        }
    }
    tab_text += "</tr>";
}

tab_text = tab_text + "</table>";
if (removeLinks)
    tab_text = tab_text.replace(/<A[^>]*>|<\/A>/g, "");
if (removeImages)
    tab_text = tab_text.replace(/<img[^>]*>/gi, ""); 
if (removeInputParams)
    tab_text = tab_text.replace(/<input[^>]*>|<\/input>/gi, "");

var ua = window.navigator.userAgent;
var msie = ua.indexOf("MSIE ");

if (msie > 0 || !!navigator.userAgent.match(/Trident.*rv\:11\./))      // If Internet Explorer
{
    myIframe.document.open("txt/html", "replace");
    myIframe.document.write(tab_text);
    myIframe.document.close();
    myIframe.focus();
    sa = myIframe.document.execCommand("SaveAs", true, document.title + ".xls");
    return true;
}
else {
    //other browser tested on IE 11
    var result = "data:application/vnd.ms-excel," + encodeURIComponent(tab_text);
    that.href = result;
    that.download = document.title + ".xls";
    return true;
}
}

ต้องใช้ iframe

<iframe id="myIframe" style="opacity: 0; width: 100%; height: 0px;" seamless="seamless"></iframe>

การใช้งาน

$("#btnExportToExcel").click(function () {
    exportToExcel(this, '#mytable');
});

0
Very Easy Code
Follow this instruction
Create excel.php file in your localhost root directory and copy and past this code.
Like this
http://localhost/excel.php?fileName=excelfile&link=1
<!-- http://localhost/excel.php?fileName=excelfile&link=2 -->

<!DOCTYPE html>
<html>
<head>
    <title>Export excel file from html table</title>
</head>
<body style="display:
<?php 
if( $_REQUEST['link'] == 1 ){
    echo 'none';
}
?>;
">

<!-- --------Optional-------- -->
Excel <input type="radio" value="1" name="exportFile">
Others <input type="radio" value="2" name="exportFile">
<button onclick="myFunction()">Download</button>
<br>
<br>
<!-- --------/Optional-------- -->

<table width="100%" id="tblData">
    <tbody>
        <tr>
            <th>Student Name</th>
            <th>Group</th>
            <th>Roll No.</th>
            <th>Class</th>
            <th>Contact No</th>
        </tr>
        <tr>
            <td>Bulbul Sarker</td>
            <td>Science</td>
            <td>1</td>
            <td>Nine</td>
            <td>01724....</td>
        </tr>
        <tr>
            <td>Karim</td>
            <td>Science</td>
            <td>3</td>
            <td>Nine</td>
            <td>0172444...</td>
        </tr>
    </tbody>
</table>

</body>
</html>

<style>
    table#tblData{
        border-collapse: collapse;
    }
    #tblData th,
    #tblData td{
        border:1px solid #CCC;
        text-align: center;
    }
</style>

<script type="text/javascript">

    /*--------Optional--------*/
    function myFunction() {
        let val = document.querySelector('input[name="exportFile"]:checked').value;     
        if(val == 1)
        {
            this.exportTableToExcel();
        }
    }
    /*--------/Optional--------*/

    function exportTableToExcel(){
        let filename2 = "<?php echo $_REQUEST['fileName']; ?>";
        let tableId = 'tblData';

        var downloadLink;
        var dataType = 'application/vnd.ms-excel';
        var tableSelect = document.getElementById(tableId);
        var tableHTML = tableSelect.outerHTML.replace(/ /g, '%20');

            // Specify file name
            let filename = filename2?filename2+'.xls':'excel_data.xls';

            // Create download link element
            downloadLink = document.createElement("a");

            document.body.appendChild(downloadLink);

            if(navigator.msSaveOrOpenBlob){
                var blob = new Blob(['\ufeff', tableHTML], {
                    type: dataType
                });
                navigator.msSaveOrOpenBlob( blob, filename);
            }else{
            // Create a link to the file
            downloadLink.href = 'data:' + dataType + ', ' + tableHTML;

            // Setting the file name
            downloadLink.download = filename;

            //triggering the function
            downloadLink.click();
        }       
    }
</script>

<?php
if( $_REQUEST['link'] == 1 ){       
    echo '<script type="text/javascript">
    exportTableToExcel();
    </script>'; 
}
?>

0

วิธีที่ง่ายที่สุดโดยใช้ Jquery

เพิ่มสิ่งนี้:

<script src="https://cdn.jsdelivr.net/gh/linways/table-to-excel@v1.0.4/dist/tableToExcel.js"></script>

จากนั้นเพิ่มสคริปต์ Jquery:

<script type="text/javascript">
  $(document).ready(function () {
      $("#exportBtn1").click(function(){
        TableToExcel.convert(document.getElementById("tab1"), {
            name: "Traceability.xlsx",
            sheet: {
            name: "Sheet1"
            }
          });
        });
  });
</script>

จากนั้นเพิ่มปุ่ม HTML:

<button id="exportBtn1">Export To Excel</button><br><br>

หมายเหตุ: "exportBtn1"จะเป็นรหัสปุ่มและ "tab1" จะเป็นรหัสตาราง

โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.