zoukankan      html  css  js  c++  java
  • js导出table 可自定义导出文件名,可导出css样式

    js导出table 可自定义导出文件名,可导出css样式

    展示:https://hanlei525.github.io/js-table/

    <!DOCTYPE html>
    <html>
    <head>
        <meta charset="utf-8">
        <title>js导出table</title>
        <link rel="stylesheet" href="https://hanlei525.github.io/layui-v2.4.3/layui/css/layui.css" media="all">
        <meta http-equiv="Access-Control-Allow-Origin" content="*">
        <!-- 注意:如果你直接复制所有代码到本地,上述css路径需要改成你本地的 -->
        <style>
            .layui-form-item-text {
                text-align: center;
                line-height: 38px;
                background: #e8e4e4;
                font-size: 18px;
                margin-bottom: 0;
                color: #5f5d5d;
            }

            table {
                text-align: center;
            }

            .layui-table th {
                text-align: center;
            }

            .layui-btn {
                float: left;
                margin-top: 10px;
            }

            .layui-table thead tr {
                background: #fff;
            }

            .layui-table tbody tr:hover {
                background: #fff;
            }

            .layui-table {
                margin: 0;
            }

            .layui-bg-green {
                margin-top: 5px;
            }

            .layui-form-add {
                min-height: 70px;
                border: 0;
            }

            .layui-form-item.layui-form-item-add.tttttt {
                35%;
            }

            .layui-form-item.layui-form-item-add.tttttt .layui-form-label-add {
                20%;
            }

            .layui-form-item.layui-form-item-add.tttttt .layui-input-block-add {
                30%;
                margin-left: 2%;
            }
        </style>
    </head>
    <body>
    <div class="layui-fluid">
        <div class="layui-row layui-col-space15">
            <div class="layui-col-md12">
                <div class="layui-card">
                    <div class="layui-card-header" id="title-header">
                        <fieldset class="layui-elem-field layui-field-title">
                            <legend>xxx统计</legend>
                        </fieldset>
                    </div>
                    <div class="layui-card-body">
                        <form class="layui-form layui-form-add" action="" lay-filter="">
                            <button type="button" class="layui-btn layui-btn-primary" id="excelBtn">导出</button>
                        </form>
                        <table class="layui-table" id="backViewTable">
                            <colgroup>
                                <col width="22.3%">
                                <col width="22.3%">
                                <col width="22.3%">
                                <col width="22.3%">
                            </colgroup>
                            <th colspan="4" class="layui-form-item layui-form-item-text">暗属性统计</th>
                            <div class="layui-form">
                                <tr>
                                    <th>a名称</th>
                                    <td>aaa</td>
                                    <th>a编号</th>
                                    <td>aaa</td>
                                </tr>
                                <tr>
                                    <th>b名称</th>
                                    <td>bbb</td>
                                    <th>b编号</th>
                                    <td>bbb</td>
                                </tr>
                                <tr>
                                    <th>开始时间</th>
                                    <td>bbb</td>
                                    <th>结束时间</th>
                                    <td>sad</td>
                                </tr>
                            </div>

                            <th colspan="4" class="layui-form-item layui-form-item-text">光属性统计</th>
                            <div class="layui-form">
                                <tr>
                                    <th colspan="2">交易分类</th>
                                    <th colspan="2">金额(元)</th>
                                <tr>
                                    <th colspan="2">临时消费</th>
                                    <td colspan="2">22</td>
                                </tr>
                                <tr>
                                    <th colspan="2">充值金额</th>
                                    <td colspan="2">11</td>
                                </tr>
                                <tr>
                                    <th colspan="2">修正充值</th>
                                    <td colspan="2">33</td>
                                </tr>
                                <tr>
                                    <th colspan="2">本金退款</th>
                                    <td colspan="2">44</td>
                                </tr>
                                <tr>
                                    <th colspan="2">赠金退款</th>
                                    <td colspan="2">55</td>
                                </tr>
                                <tr>
                                    <th colspan="2">修正赠送</th>
                                    <td colspan="2">66</td>
                                </tr>
                                <tr>
                                    <th colspan="2">合计</th>
                                    <td colspan="2">more</td>
                                </tr>
                            </div>
                        </table>
                    </div>
                </div>
            </div>
        </div>
    </div>


    <!--<script src="layui/layui.js" charset="utf-8"></script>-->


    <!-- 注意:如果你直接复制所有代码到本地,上述js路径需要改成你本地的 -->
    <script>

        document.getElementById('excelBtn').onclick = () => {
            exportExcel.exports(backViewTable);
        };
    // 设置自定义文件名,需要加.xls保证即使导出文件有扩展名
        var filename = "xx数据统计.xls";

        class ExportExcel {
            constructor() {
                this.idTmr = null;
                this.uri = 'data:application/vnd.ms-excel;base64,';
                this.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><meta charset="UTF-8">' +
                        '<!--[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]-->' +


    // 自定义table样式,可以将样式导出到excal表格
                        ' <style type="text/css">' +
                        'table td,table th {' +
                        ' 200px;' +
                        'height: 30px;' +
                        ' text-align: center;' +
                        ' }' +
                        '</style>' +


                        '</head><body><table>{table}</table></body></html>

  • 相关阅读:
    Web Site Administration Tool 文章收集
    Sql中补零方法及其它
    PowerDesigner 教程
    什么是Zend
    什么是CMS系统?
    谈谈今天遇到的编译工具查错的问题
    Lec4快速排序
    堆排序 zz
    强大的Python
    Lec6待学习的堆排序
  • 原文地址:https://www.cnblogs.com/hanlei525/p/9613000.html
Copyright © 2011-2022 走看看