jsp导出当页表格到excel

1 篇文章 0 订阅
export function tableToExcel(tableId, buttonId, fileName) {
  let table = document.getElementById(tableId)
  if(table === null || table === undefined) {
    table = document.getElementsByTagName('table')[0]
  }
  // 克隆(复制)此table元素,这样对复制品进行修改(如添加或改变table的标题等),导出复制品,而不影响原table在浏览器中的展示。
  // table = table.cloneNode(true)
  const uri = 'data:application/vnd.ms-excel;base64,'
  const 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 version="1.0" encoding="UTF-8" standalone="yes"?><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 style="vnd.ms-excel.numberformat:@">{table}</table></body></html>'
  const base64 = function(s) {
    return window.btoa(unescape(encodeURIComponent(s)))
  }
  const format = function(s, c) {
    return s.replace(/{(\w+)}/g, function(m, p) {
      return c[p]
    })
  }
  if(!table.nodeType) table = document.getElementById(table)
  const ctx = {
    worksheet: '',
    table: table.innerHTML
  }
  // window.location.href = uri + base64(format(template, ctx))
  if(buttonId === null || buttonId === undefined) {
    const dom_a = document.createElement('a') // 1、创建元素
    dom_a.style.visibility = 'hidden'
    table.insertBefore(dom_a, table.childNodes[0]) // 插入到最左边
    dom_a.href = uri + base64(format(template, ctx))
    dom_a.download = fileName
    dom_a.click()
  } else {
    document.getElementById(buttonId).href = uri + base64(format(template, ctx))
    document.getElementById(buttonId).download = fileName
  }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值