zoukankan      html  css  js  c++  java
  • 非常简单的数据,支持excel表格下载功能

    <%@ page language="java" import="java.util.*" pageEncoding="utf-8"%>
    <%
    String path = request.getContextPath();
    String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
    %>

    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
    <html>
    <head>
    <base href="<%=basePath%>">

    <title>My JSP 'MyJsp.jsp' starting page</title>

    <meta http-equiv="pragma" content="no-cache">
    <meta http-equiv="cache-control" content="no-cache">
    <meta http-equiv="expires" content="0">
    <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
    <meta http-equiv="description" content="This is my page">
    <!--
    <link rel="stylesheet" type="text/css" href="styles.css">
    -->
    <script type="text/javascript" src="oa/js/jquery-1.11.0.min.js"></script>
    <script type="text/javascript" src="oa/js/jquery.js"></script>
    <script type="text/javascript" src="oa/js/jquery.table2excel.min.js"></script>

    </HEAD>

    <BODY>
    <input type="button" id="btn" value="导出到excel">
    <table class="table2excel">
    <tr >
    <td>111<td>
    <td>222<td>
    <td >333<td>
    </tr>
    <tr>
    <td>444<td>
    <td>555<td>
    <td >666<td>
    </tr>
    </table>
    </BODY>
    <script>
    $(function() {
    var d = new Date();
    var date = d.getFullYear() + "年" +(d.getMonth() + 1) + "月" + d.getDate() + "日";
    $("#btn").click(function(){
    $(".table2excel").table2excel({
    exclude: ".noExl",
    name: "Excel Document Name",
    filename: date,
    exclude_img: true,
    exclude_links: true,
    exclude_inputs: true
    });
    });

    });
    </script>
    </HTML>

  • 相关阅读:
    c++vector(入门级)
    端口扫描(TCP)
    推荐安全程序员的书单(系统、网络、安全等)
    My latest news(--2016.12.31)
    HTML+JS+DOM【选项卡自动切换】
    20170916考试总结
    [Usaco2014 Mar]Sabotage
    [SHOI2014]概率充电器
    [Usaco2010 Dec]Exercise 奶牛健美操
    [JZOJ4687]奇袭
  • 原文地址:https://www.cnblogs.com/zhangliang88/p/5470580.html
Copyright © 2011-2022 走看看