jquery.dataTables实现表格分页搜索导出excel、csv、pdf及打印效果代码

代码语言:html

所属分类:表格

代码描述:jquery.dataTables实现表格分页搜索导出excel、csv、pdf及打印效果代码

代码标签: jquery.dataTables 表格 分页 搜索 导出 excel csv pdf 打印

下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开

<!DOCTYPE html>
<html>
<head>
    <title></title>
    <meta charset='utf-8'>
<link type="text/css" rel="stylesheet" href="//repo.bfw.wiki/bfwrepo/css/jquery.dataTables.min.css">

    <style>
        tbody td{
        	text-align: center;
        }
    </style>

</head>

<body>

    <h1>日程事件导出</h1>
    <table id="example" class="display" role="grid" aria-describedby="example_info">
        <thead>
            <tr>
                <th>事件ID</th>
                <th>员工ID</th>
                <th>标题</th>
                <th>URL</th>
                <th>开始时间</th>
            </tr>
        </thead>
        <tbody>

        </tbody>
        <tfoot>
            <tr>
                <th>事件ID</th>
                <th>员工ID</th>
                <th>标题</th>
                <th>URL</th>
                <th>开始时间</th>
            </tr>
        </tfoot>
    </table>

<script type="text/javascript" src="//repo.bfw.wiki/bfwrepo/js/jquery-3.2.1.min.js"></script>
<script type="text/javascript" src="//repo.bfw.wiki/bfwrepo/js/jquery.dataTables.js"><.........完整代码请登录后点击上方下载按钮下载查看

网友评论0