HTML导出EXCEL

http://kboby.blog.163.com/blog/static/5882164520081016650925/

 

另一种方法:

最佳答案

如果用java实现的话,那就需要用到jxl.jar包中提供的类方法来完成了,你可以先查看一下jxl的资料再来做。
还有一种简单的方法就是用javascript脚本生成,例如:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
<script language="javascript">
 function tableToExcel(tname) {
  if(confirm('是否要导出到excel?')!=0)
  { 
   window.clipboardData.setData("Text",document.all(tname).outerHTML);
   try
   {
    ExApp = new ActiveXObject("Excel.Application")
    var ExWBk = ExApp.workbooks.add()
    var ExWSh = ExWBk.worksheets(1)
    ExApp.DisplayAlerts = false
    ExApp.visible = true
   }  
   catch(e)
   {
    alert("导出没有成功!1.您的电脑没有安装Microsoft Excel软件!2.请设置Internet选项自定义级别,对没有标记安全级别的  ActiveX控件进行提示。")
    return false
   } 
    ExWBk.worksheets(1).Paste;
   }else
   { 
   return;
  }
  }
</script>
</head>

<body>
<table id="baba">
 <tr>
  <td>afdsfsd</td>
  <td>fdfsdfds</td>
  <td>fdfsadfsa</td>
  <td>fdsfsadfds</td>
  <td>fdsfasd</td>
  <td>fdsfsad</td>
 </tr>
 <tr>
  <td>afdsfsd</td>
  <td>fdfsdfds</td>
  <td>fdfsadfsa</td>
  <td>fdsfsadfds</td>
  <td>fdsfasd</td>
  <td>fdsfsad</td>
 </tr>
 <tr>
  <td>afdsfsd</td>
  <td>fdfsdfds</td>
  <td>fdfsadfsa</td>
  <td>fdsfsadfds</td>
  <td>fdsfasd</td>
  <td>fdsfsad</td>
 </tr>
</table>
<input type="button" name="anniu" onclick="tableToExcel('baba')" />
</body>
</html> 

 

附件中也有方法

你可能感兴趣的:(JavaScript,html,XHTML,Excel,Microsoft)