html怎么生成Excel
发布网友
发布时间:2022-04-20 07:54
我来回答
共3个回答
热心网友
时间:2022-04-20 13:03
如果用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>
热心网友
时间:2022-04-20 14:21
最简单的办法。。
直接当前页面另存为 Excel
Excel 可以 读html
热心网友
时间:2022-04-20 15:56
excel中的数据导入