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>

  • 相关阅读:
    使用_Capistrano_进行自动化部署(2)
    使用 Capistrano 进行自动化部署
    Zend_Framework_1 框架是如何被启动的?
    PHP新版本变化
    Phpstorm 无法自动断点 Exception
    理解希尔排序
    C# Thread 线程
    Unity 依赖注入容器的AOP扩展
    C# 面向切面编程 AOP
    C# 表达式树 Expression
  • 原文地址:https://www.cnblogs.com/zhangliang88/p/5470580.html
Copyright © 2011-2022 走看看